1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00

fix: correct order of IFlagKey entries by moving 'etagByEnv' before 'fetchMode'

This commit is contained in:
Tymoteusz Czech 2025-08-28 22:17:33 +02:00
parent c5ddb3e1be
commit a7552575ab
No known key found for this signature in database
GPG Key ID: 133555230D88D75F

View File

@ -58,8 +58,7 @@ export type IFlagKey =
| 'changeRequestApproverEmails'
| 'lifecycleGraphs'
| 'addConfiguration'
| 'fetchMode'
| 'etagByEnv';
| 'etagByEnv'
| 'fetchMode';
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;