Skip to content

Commit

Permalink
expect Features key only for v2
Browse files Browse the repository at this point in the history
  • Loading branch information
rhelmer committed Dec 19, 2024
1 parent 9ca9bda commit 898619c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/functions/server/getExperiments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ export async function getExperiments(params: {

let experimentData;
if (flags.includes("CirrusV2")) {
experimentData = json;
} else {
experimentData = json["Features"];
} else {
experimentData = json;
}

return (
Expand Down

0 comments on commit 898619c

Please sign in to comment.