Skip to content

Commit 93f696f

Browse files
committed
fix: type error
1 parent 9293703 commit 93f696f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/cli/src/configLoader.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ async function unrollAssistantWithConfig(
291291
apiBase: env.apiBase,
292292
rootPath:
293293
packageIdentifier.uriType === "file"
294-
? dirname(packageIdentifier.filePath)
294+
? dirname(packageIdentifier.fileUri)
295295
: undefined,
296296
}),
297297
{
@@ -328,7 +328,7 @@ async function loadConfigYaml(
328328
apiClient: DefaultApiInterface,
329329
): Promise<AssistantUnrolled> {
330330
return await unrollAssistantWithConfig(
331-
{ filePath, uriType: "file" },
331+
{ fileUri: filePath, uriType: "file" },
332332
accessToken,
333333
organizationId,
334334
apiClient,

0 commit comments

Comments
 (0)