We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34b41e7 commit e850c9eCopy full SHA for e850c9e
1 file changed
src/cli/tui/screens/create/CreateScreen.tsx
@@ -173,7 +173,7 @@ function CreatedSummary({
173
const isByo = agentConfig?.agentType === 'byo';
174
const agentPath = isCreate ? `app/${agentConfig.name}/` : isByo ? agentConfig.codeLocation : null;
175
const harnessPath = harnessConfig ? `harness/${harnessConfig.name}/` : null;
176
- const resourcePath = agentPath || harnessPath;
+ const resourcePath = agentPath ?? harnessPath;
177
const agentcorePath = 'agentcore/';
178
const maxPathLen = resourcePath ? Math.max(resourcePath.length, agentcorePath.length) : agentcorePath.length;
179
0 commit comments