From 953355d2a584a5030c74f65ddfbc1bdf01ea1790 Mon Sep 17 00:00:00 2001 From: xhzeem Date: Tue, 21 Jul 2026 22:18:25 +0300 Subject: [PATCH] fix(i18n): use UAE flag instead of Saudi flag for ar locale --- components/ui/flag-icons.tsx | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/components/ui/flag-icons.tsx b/components/ui/flag-icons.tsx index 89837f56..0f07a60a 100644 --- a/components/ui/flag-icons.tsx +++ b/components/ui/flag-icons.tsx @@ -274,18 +274,14 @@ const skCross = " 7.22 49.54 7.11-.62-20.5-6.6-46.33-6.6-46.33s12.3.96 17.22.96c4.92 0" + " 17.21-.96 17.21-.96s-5.97 25.83-6.6 46.33c12.18.1 29.72-.49 49.55-7.11" + " 0 0-.62 8.3-.62 17.98 0 9.67.62 17.98.62 17.98-19.86-6.64-37.42-7.22-49.6-7.12v32.37"; -/** Saudi Arabia – Green field with a stylized white sword (simplified) */ -export function FlagSA(props: FlagProps) { +/** United Arab Emirates – Red hoist stripe, green/white/black horizontal bands */ +export function FlagAE(props: FlagProps) { return ( - - - - - - - - - + + + + + ); } @@ -335,5 +331,5 @@ export const flagComponents: Record ReactElement> zh: FlagCN, fa: FlagIR, he: FlagIL, - ar: FlagSA, + ar: FlagAE, };