Skip to content

Commit

Permalink
refactor(protocol-designer): liquid class ff reducer typo fix (#17211)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerader authored Jan 8, 2025
1 parent 59a729d commit c9fdf3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocol-designer/src/feature-flags/reducers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const initialFlags: Flags = {
process.env.OT_PD_ENABLE_HOT_KEYS_DISPLAY === '1' || true,
OT_PD_ENABLE_REACT_SCAN: process.env.OT_PD_ENABLE_REACT_SCAN === '1' || false,
OT_PD_ENABLE_LIQUID_CLASSES:
process.env.OT_PD_ENABLE_REACT_SCAN === '1' || false,
process.env.OT_PD_ENABLE_LIQUID_CLASSES === '1' || false,
}
// @ts-expect-error(sa, 2021-6-10): cannot use string literals as action type
// TODO IMMEDIATELY: refactor this to the old fashioned way if we cannot have type safety: https://github.com/redux-utilities/redux-actions/issues/282#issuecomment-595163081
Expand Down

0 comments on commit c9fdf3b

Please sign in to comment.