Skip to content

Commit 927ddf7

Browse files
define undefined attributes sandboxId and agentName in app-config.ts
1 parent 3568891 commit 927ddf7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app-config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export interface AppConfig {
1414
logoDark?: string;
1515
accentDark?: string;
1616

17+
// for LiveKit Cloud Sandbox
1718
sandboxId?: string;
1819
agentName?: string;
1920
}
@@ -33,4 +34,9 @@ export const APP_CONFIG_DEFAULTS: AppConfig = {
3334
logoDark: '/lk-logo-dark.svg',
3435
accentDark: '#1fd5f9',
3536
startButtonText: 'Start call',
37+
38+
// for LiveKit Cloud Sandbox
39+
// these must be defined to satisfy `getAppConfig` in `lib/utils.ts`
40+
sandboxId: undefined as string | undefined,
41+
agentName: undefined as string | undefined,
3642
};

0 commit comments

Comments
 (0)