From 70833feb50d4596f8d0350140d10df985c96c1b7 Mon Sep 17 00:00:00 2001 From: William Gerald Blondel Date: Sun, 28 Mar 2021 05:29:13 +0200 Subject: [PATCH] Revert default locale to en --- frontend/app/utils/getLocale.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/utils/getLocale.ts b/frontend/app/utils/getLocale.ts index 0b32343d..e042b0db 100644 --- a/frontend/app/utils/getLocale.ts +++ b/frontend/app/utils/getLocale.ts @@ -1,3 +1,3 @@ export function getLocale(params: { locale?: string; [key: string]: unknown }): string { - return params.locale || 'fr'; + return params.locale || 'en'; }