From 4389e33554f9c4f9725cb065cd0cdb0a746f123f Mon Sep 17 00:00:00 2001 From: "a.bouhuolia" Date: Sat, 7 Aug 2021 08:36:47 +0200 Subject: [PATCH] fix: set arabic as default UI language. --- client/src/components/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/App.js b/client/src/components/App.js index f851f4234..aa79941ae 100644 --- a/client/src/components/App.js +++ b/client/src/components/App.js @@ -28,7 +28,7 @@ const queryConfig = { function GlobalFetchQuery({ children }) { - window.localStorage.setItem('lang', 'en'); + window.localStorage.setItem('lang', 'ar-ly'); return children }