We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 016d06b + 48fda60 commit f7c1beaCopy full SHA for f7c1bea
1 file changed
packages/webapp/src/containers/Insights/TapeSurvey/getSurveyVersion.ts
@@ -24,7 +24,5 @@ const COUNTRY_VERSIONS = ['AU'];
24
* 2. Add a country_code to `COUNTRY_VERSIONS`.
25
*/
26
export const getSurveyVersion = (countryCode: string | undefined): string | undefined => {
27
- return countryCode && COUNTRY_VERSIONS.includes(countryCode)
28
- ? countryCode.toLowerCase()
29
- : undefined;
+ return countryCode && COUNTRY_VERSIONS.includes(countryCode) ? countryCode.toLowerCase() : 'fao';
30
};
0 commit comments