From c66f9688776bd743eac812579a815529e16270c9 Mon Sep 17 00:00:00 2001 From: Pritish Budhiraja <1805317@kiit.ac.in> Date: Thu, 4 Apr 2024 17:28:28 +0530 Subject: [PATCH] fix: string case changes --- src/CardTheme.res | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/CardTheme.res b/src/CardTheme.res index ac3b9aaf2..c01d51857 100644 --- a/src/CardTheme.res +++ b/src/CardTheme.res @@ -90,9 +90,8 @@ let getLocaleObject = string => { | "it" => ItalianLocale.localeStrings | "pl" => PolishLocale.localeStrings | "nl" => DutchLocale.localeStrings - | "SV" => SwedishLocale.localeStrings + | "sv" => SwedishLocale.localeStrings | "ru" => RussianLocale.localeStrings - | _ => EnglishLocale.localeStrings } }