From cf993c10363ca751d56c685b44ae7de4b8c9d828 Mon Sep 17 00:00:00 2001 From: Jesper Ordrup Date: Fri, 15 May 2026 11:39:57 +0200 Subject: [PATCH] adjust flag --- components/ui/flag-icons.tsx | 3 ++- components/ui/language-switcher.tsx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/components/ui/flag-icons.tsx b/components/ui/flag-icons.tsx index 03d57b30..417bf1f6 100644 --- a/components/ui/flag-icons.tsx +++ b/components/ui/flag-icons.tsx @@ -202,7 +202,7 @@ export function FlagCS(props: FlagProps) { } /** Danish flag - Red with a white cross */ -export function FlagDa(props: FlagProps) { +export function FlagDA(props: FlagProps) { return ( @@ -229,4 +229,5 @@ export const flagComponents: Record ReactElement> uk: FlagUA, zh: FlagCN, cs: FlagCS, + da: FlagDA }; diff --git a/components/ui/language-switcher.tsx b/components/ui/language-switcher.tsx index 0cb7ce9c..912d571a 100644 --- a/components/ui/language-switcher.tsx +++ b/components/ui/language-switcher.tsx @@ -13,7 +13,7 @@ const languages = [ { value: 'fr', label: 'Français' }, { value: 'ja', label: '日本語' }, { value: 'ko', label: '한국어' }, - { value: 'da', label: 'Danish' }, + { value: 'da', label: 'Dansk' }, { value: 'de', label: 'Deutsch' }, { value: 'es', label: 'Español' }, { value: 'it', label: 'Italiano' },