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 (