We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9922ab7 commit 633bfb5Copy full SHA for 633bfb5
dotcom-rendering/src/lib/getCountryCode.ts
@@ -15,6 +15,7 @@ const isSecurityError = (error: unknown) =>
15
or if none of those exists, it will call the geo endpoint to fetch it and set it in `GU_geo_country`
16
*/
17
export const getLocaleCode = async (): Promise<CountryCode | null> => {
18
+ return 'FR';
19
return getLocale().catch((error) => {
20
if (isSecurityError(error)) return null;
21
0 commit comments