chore: dependency update

This commit is contained in:
zhom
2026-06-23 22:46:39 +04:00
parent 4598b22af1
commit f8791a9ec5
7 changed files with 2903 additions and 3381 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
* Get flag icon CSS class for a country code (ISO 3166-1 alpha-2)
*/
export function getFlagIconClass(countryCode: string): string {
if (!countryCode || countryCode.length !== 2) {
if (countryCode?.length !== 2) {
return "";
}
return `fi fi-${countryCode.toLowerCase()}`;