Browse Source

Add reasonable default for flag lookup

Kirk Trombley 4 years ago
parent
commit
fc7516c2aa
1 changed files with 3 additions and 0 deletions
  1. 3 0
      client/src/domain/flagLookup.js

+ 3 - 0
client/src/domain/flagLookup.js

@@ -5,6 +5,9 @@ const asciiOffset = 0x41;
 const flagShift = flagOffset - asciiOffset;
 
 const flagLookup = country => {
+  if (country === null) {
+    return '🌎';
+  }
   const upper = country.toUpperCase();
   const firstChar = upper.charCodeAt(0) + flagShift;
   const secondChar = upper.charCodeAt(1) + flagShift;