Skip to content

Commit

Permalink
Enable PWA on production
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-robert committed Nov 25, 2024
1 parent 46c2580 commit b9737d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const allFlags: FlagMetadata[] = [
{ name: "noWelcome", defaultOnStages: ["local", "REVIEW"] },
{
name: "pwa",
defaultOnStages: ["local", "REVIEW", "STAGING"],
defaultOnStages: ["REVIEW", "STAGING", "PRODUCTION"],
},
];

Expand Down
2 changes: 1 addition & 1 deletion src/simulator/Simulator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const Simulator = ({
const [brand500] = useToken("colors", ["brand.500"]);
const url = useMemo(() => {
const production =
"https://python-simulator.usermbit.org/v/0.1/simulator.html";
"https://python-simulator.usermbit.org/v/0.1/simulator.html?flag=sw";
const staging =
"https://python-simulator.usermbit.org/staging/simulator.html?flag=sw";

Expand Down

0 comments on commit b9737d1

Please sign in to comment.