Skip to content

Commit

Permalink
Experiments fix
Browse files Browse the repository at this point in the history
  • Loading branch information
laushinka authored and roboquat committed Dec 7, 2021
1 parent 2993451 commit 7b7193d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/dashboard/src/experiments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export namespace Experiment {
if (arr === null) {
return undefined;
}
return new Set(arr) as Set<Experiment>;
return new Set(JSON.parse(arr)) as Set<Experiment>;
}

export function getAsArray(): Experiment[] {
Expand Down

0 comments on commit 7b7193d

Please sign in to comment.