Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/simulator/Simulator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ const Simulator = ({
simFocus,
}: SimulatorProps) => {
// This needs the domain to be updated before we release.
const url = "https://stage-python-simulator.microbit.org/simulator.html";
const version = "0.1.0";
const url = `https://python-simulator.usermbit.org/v/${version}/simulator.html`;
// For testing with sim branches:
//const branch = "whatever";
//const url = `https://review-python-simulator.microbit.org/${branch}/simulator.html`;
//const url = `https://review-python-simulator.usermbit.org/${branch}/simulator.html`;

const ref = useRef<HTMLIFrameElement>(null);
const intl = useIntl();
Expand Down