Skip to content

Commit

Permalink
chore: Enable demo by default
Browse files Browse the repository at this point in the history
  • Loading branch information
flozia committed Aug 14, 2024
1 parent 8298e3c commit 9f13404
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/functions/server/getExperiments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ export async function getExperiments(params: {
return overriddenExperimentData;
}

if (["local"].includes(process.env.APP_ENV ?? "local")) {
const isDemo = true;
if (isDemo || ["local"].includes(process.env.APP_ENV ?? "local")) {
return {
...localExperimentData,
"mozweek-demo": {
Expand Down

0 comments on commit 9f13404

Please sign in to comment.