Remove unnecessary check
This commit is contained in:
parent
99849e5db9
commit
d97e0e1322
|
@ -425,7 +425,7 @@
|
||||||
const winkingLucyREnabled = !!formData.get("winkingLucyREnabled")
|
const winkingLucyREnabled = !!formData.get("winkingLucyREnabled")
|
||||||
const sleepyLucyEnabled = !!formData.get("sleepyLucyEnabled")
|
const sleepyLucyEnabled = !!formData.get("sleepyLucyEnabled")
|
||||||
const flagLucyName = `${formData.get("flagLucy")}`
|
const flagLucyName = `${formData.get("flagLucy")}`
|
||||||
const flagLucy = flagLucyName !== "none" ? flagColors.get(flagLucyName) : undefined
|
const flagLucy = flagColors.get(flagLucyName)
|
||||||
const colorSchemeName = `${formData.get("colorScheme")}`
|
const colorSchemeName = `${formData.get("colorScheme")}`
|
||||||
const isCustomColorScheme = colorSchemeName === "custom"
|
const isCustomColorScheme = colorSchemeName === "custom"
|
||||||
const colorScheme = isCustomColorScheme ? {
|
const colorScheme = isCustomColorScheme ? {
|
||||||
|
|
Loading…
Reference in New Issue