Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ app.prepare().then(async () => {
const ngrokUrl = listener.url();

const { default: open, apps } = await import('open');
const url = `https://dashboard.copilot.app/dev-mode?url=${encodeURIComponent(
const url = `https://dashboard.assembly.com/dev-mode?url=${encodeURIComponent(
ngrokUrl,
)}`;

Expand Down
2 changes: 1 addition & 1 deletion src/bridge/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# App Bridge

The Copilot App Bridge is a two-way communication protocol between your Copilot workspace and custom app. In this folder you will find helpers that make working with the App Bridge simpler.
The Assembly App Bridge is a two-way communication protocol between your Assembly workspace and custom app. In this folder you will find helpers that make working with the App Bridge simpler.
2 changes: 1 addition & 1 deletion src/utils/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export async function getSession(searchParams: SearchParams) {
// error boundary page instead of a vercel error.
const apiKey = need<string>(
process.env.ASSEMBLY_API_KEY,
'ASSEMBLY_API_KEY is required, guide available at: https://docs.copilot.app/docs/custom-apps-setting-up-your-first-app#step-2-register-your-app-and-get-an-api-key',
'ASSEMBLY_API_KEY is required, guide available at: https://docs.assembly.com/docs/custom-apps-setting-up-your-first-app#step-2-register-your-app-and-get-an-api-key',
);

const assembly = assemblyApi({
Expand Down