aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/palette.ts
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-02-26 21:46:54 +0800
committercrupest <crupest@outlook.com>2023-02-26 21:46:54 +0800
commit48fdb7659e3178cbb7ffb78b57b9a1a24f2dd363 (patch)
tree64bb55b5774c25de90616ccef1f72c651c99c430 /FrontEnd/src/palette.ts
parentd9191259cc468c35a6ab46303dedc2af9012d76f (diff)
downloadtimeline-48fdb7659e3178cbb7ffb78b57b9a1a24f2dd363.tar.gz
timeline-48fdb7659e3178cbb7ffb78b57b9a1a24f2dd363.tar.bz2
timeline-48fdb7659e3178cbb7ffb78b57b9a1a24f2dd363.zip
Fix prettier lint error.
Diffstat (limited to 'FrontEnd/src/palette.ts')
-rw-r--r--FrontEnd/src/palette.ts2
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>;