Skip to content

Commit

Permalink
Merge pull request #370 from openchatai/remove-extra-url-prefix
Browse files Browse the repository at this point in the history
Remove the extra https from the url
  • Loading branch information
gharbat authored Dec 6, 2023
2 parents 9a70641 + 37d8514 commit a753676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/app/(copilot)/copilot/[copilot_id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Widget = dynamic(() => import("./CopilotWidget"));

function InstallationSection() {
const { token: CopilotToken } = useCopilot();
const baseUrl = "http://localhost:8888/backend" // @todo read from the env
const baseUrl = "http://localhost:8888" // @todo read from the env
return (
<section className="rounded-lg border bg-white shadow-sm">
<AccordionItem value="installation">
Expand Down

0 comments on commit a753676

Please sign in to comment.