Skip to content

Commit

Permalink
Fix: extra slash in playground url
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed Nov 4, 2024
1 parent 2ba54e0 commit 0c75cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/tunnel-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export async function watchForChanges(pluginId: string, tunnelUrl: string, bitte
}

export async function openPlayground(agentId: string, playgroundUrl: string): Promise<string> {
const url = `${playgroundUrl}/${agentId}`;
const url = `${playgroundUrl}${agentId}`;
console.log(`Opening playground: ${url}`);
await open(url);

Expand Down

0 comments on commit 0c75cb7

Please sign in to comment.