diff --git a/teachertool/src/components/MakecodeFrame.tsx b/teachertool/src/components/MakecodeFrame.tsx index 18670d4b4ba9..1302b20632e5 100644 --- a/teachertool/src/components/MakecodeFrame.tsx +++ b/teachertool/src/components/MakecodeFrame.tsx @@ -15,7 +15,7 @@ export const MakeCodeFrame: React.FC = () => { if (editorUrl.charAt(editorUrl.length - 1) === "/" && !pxt.BrowserUtils.isLocalHost()) { url = editorUrl.substr(0, editorUrl.length - 1); } - url += `#pub:${shareId}?controller=1&teachertool=1&readonly=1&ws=browser&nocookiebanner=1`; + url += `?controller=1&teachertool=1&readonly=1&ws=browser&nocookiebanner=1#pub:${shareId}`; return url; }