Skip to content

Commit 6f10a29

Browse files
Use a fixed release of the simulator. (#969)
Updates the deployment location.
1 parent c7409c4 commit 6f10a29

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/simulator/Simulator.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@ const Simulator = ({
3737
simFocus,
3838
}: SimulatorProps) => {
3939
// This needs the domain to be updated before we release.
40-
const url = "https://stage-python-simulator.microbit.org/simulator.html";
40+
const version = "0.1.0";
41+
const url = `https://python-simulator.usermbit.org/v/${version}/simulator.html`;
4142
// For testing with sim branches:
4243
//const branch = "whatever";
43-
//const url = `https://review-python-simulator.microbit.org/${branch}/simulator.html`;
44+
//const url = `https://review-python-simulator.usermbit.org/${branch}/simulator.html`;
4445

4546
const ref = useRef<HTMLIFrameElement>(null);
4647
const intl = useIntl();

0 commit comments

Comments
 (0)