Skip to content

Commit

Permalink
fix rules disabled in query parameters not working. fixes #30
Browse files Browse the repository at this point in the history
  • Loading branch information
DetachHead committed Dec 22, 2024
1 parent 30c352e commit e33b31d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/UrlUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export function getStateFromUrl(): PlaygroundState | undefined {

default: {
if (configSettingsMap.has(key)) {
state.settings.configOverrides[key] = Boolean(value);
state.settings.configOverrides[key] = value !== 'false';
}
}
}
Expand Down

0 comments on commit e33b31d

Please sign in to comment.