diff options
Diffstat (limited to 'FrontEnd/src/palette.ts')
-rw-r--r-- | FrontEnd/src/palette.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FrontEnd/src/palette.ts b/FrontEnd/src/palette.ts index 4b927b5b..d06f9b19 100644 --- a/FrontEnd/src/palette.ts +++ b/FrontEnd/src/palette.ts @@ -42,7 +42,7 @@ const paletteColorList = [ "success", ] as const; -export type PaletteColorType = typeof paletteColorList[number]; +export type PaletteColorType = (typeof paletteColorList)[number]; export type Palette = Record<PaletteColorType, PaletteColor>; |