From e9aee9e7e808c358a79e3c464278572cd412804b Mon Sep 17 00:00:00 2001 From: Jip Fr Date: Fri, 29 Dec 2023 16:52:13 +0100 Subject: [PATCH] Correct nepal flag --- src/components/FlagIcon.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/FlagIcon.tsx b/src/components/FlagIcon.tsx index 5bf13939..e5666dec 100644 --- a/src/components/FlagIcon.tsx +++ b/src/components/FlagIcon.tsx @@ -22,6 +22,7 @@ const countryOverrides: Record = { sl: "si", sv: "se", et: "ee", + ne: "np", }; export function FlagIcon(props: FlagIconProps) { @@ -48,10 +49,14 @@ export function FlagIcon(props: FlagIconProps) { ); + let backgroundClass = "bg-video-context-flagBg"; + if (countryCode === "np") backgroundClass = "bg-white"; + return (