We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7409c4 commit 6f10a29Copy full SHA for 6f10a29
src/simulator/Simulator.tsx
@@ -37,10 +37,11 @@ const Simulator = ({
37
simFocus,
38
}: SimulatorProps) => {
39
// This needs the domain to be updated before we release.
40
- const url = "https://stage-python-simulator.microbit.org/simulator.html";
+ const version = "0.1.0";
41
+ const url = `https://python-simulator.usermbit.org/v/${version}/simulator.html`;
42
// For testing with sim branches:
43
//const branch = "whatever";
- //const url = `https://review-python-simulator.microbit.org/${branch}/simulator.html`;
44
+ //const url = `https://review-python-simulator.usermbit.org/${branch}/simulator.html`;
45
46
const ref = useRef<HTMLIFrameElement>(null);
47
const intl = useIntl();
0 commit comments