fix(SW-719): remove default value

This commit is contained in:
Fredrik Thorsson
2024-11-08 11:50:38 +01:00
parent 008463c5f4
commit effbc4c571
2 changed files with 0 additions and 4 deletions

View File

@@ -24,7 +24,5 @@ export function getScriptFontColor(theme: CardProps["theme"]) {
return (color = "primaryStrong")
case "image":
return (color = "image")
default:
return "primaryLightOnSurfaceAccent"
}
}

View File

@@ -24,7 +24,5 @@ export function getFontColor(theme: CardProps["theme"]) {
return (color = "primaryStrong")
case "image":
return (color = "image")
default:
return (color = "burgundy")
}
}