From 18b03624d5c087bfa6c41f956e0c759526dd8f57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mime=20=C4=8Cuvalo?= Date: Tue, 21 May 2024 09:56:37 +0100 Subject: [PATCH] touchscreen: wrong url argh (#3790) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix url ### Change Type - [x] `sdk` — Changes the tldraw SDK - [ ] `dotcom` — Changes the tldraw.com web app - [ ] `docs` — Changes to the documentation, examples, or templates. - [ ] `vs code` — Changes to the vscode plugin - [ ] `internal` — Does not affect user-facing stuff - [x] `bugfix` — Bug fix - [ ] `feature` — New feature - [ ] `improvement` — Improving existing features - [ ] `chore` — Updating dependencies, other boring stuff - [ ] `galaxy brain` — Architectural changes - [ ] `tests` — Changes to any test code - [ ] `tools` — Changes to infrastructure, CI, internal scripts, debugging tools, etc. - [ ] `dunno` — I don't know --- apps/dotcom/src/pages/public-touchscreen-side-panel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/dotcom/src/pages/public-touchscreen-side-panel.tsx b/apps/dotcom/src/pages/public-touchscreen-side-panel.tsx index 7ccf2e34c..a8cc3de7c 100644 --- a/apps/dotcom/src/pages/public-touchscreen-side-panel.tsx +++ b/apps/dotcom/src/pages/public-touchscreen-side-panel.tsx @@ -15,8 +15,8 @@ export function Component() { }) const sidePanelClient = await session.createSidePanelClient() await sidePanelClient.setCollaborationStartingState({ - sidePanelUrl: `${window.location.origin}/tc-side`, - mainStageUrl: `${window.location.origin}/tc`, + sidePanelUrl: `${window.location.origin}/ts-side`, + mainStageUrl: `${window.location.origin}/ts`, additionalData: undefined, }) }