Skip to content

Commit f75132e

Browse files
authored
feat(app): add LPC redesign feature flag (#17065)
Closes EXEC-1040
1 parent 1b95421 commit f75132e

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

app/src/assets/localization/en/app_settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"__dev_internal__enableLabwareCreator": "Enable App Labware Creator",
33
"__dev_internal__enableRunNotes": "Display Notes During a Protocol Run",
44
"__dev_internal__forceHttpPolling": "Poll all network requests instead of using MQTT",
5+
"__dev_internal__lpcRedesign": "LPC Redesign",
56
"__dev_internal__protocolStats": "Protocol Stats",
67
"__dev_internal__protocolTimeline": "Protocol Timeline",
78
"__dev_internal__reactQueryDevtools": "Enable React Query Devtools",

app/src/redux/config/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export const DEV_INTERNAL_FLAGS: DevInternalFlag[] = [
44
'forceHttpPolling',
55
'protocolStats',
66
'enableRunNotes',
7+
'lpcRedesign',
78
'protocolTimeline',
89
'enableLabwareCreator',
910
'reactQueryDevtools',

app/src/redux/config/schema-types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export type DevInternalFlag =
1212
| 'forceHttpPolling'
1313
| 'protocolStats'
1414
| 'enableRunNotes'
15+
| 'lpcRedesign'
1516
| 'protocolTimeline'
1617
| 'enableLabwareCreator'
1718
| 'reactQueryDevtools'

0 commit comments

Comments
 (0)