From f88542406f37aa4bccbd1e4c20405bf51dec6896 Mon Sep 17 00:00:00 2001 From: AmirHossein Mahmoodi Date: Mon, 25 Sep 2023 11:26:05 +0330 Subject: [PATCH] CFE-10 fixed bug NextIntlProvider in _app --- src/pages/_app.jsx | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/src/pages/_app.jsx b/src/pages/_app.jsx index 29ec464..e76fbcb 100644 --- a/src/pages/_app.jsx +++ b/src/pages/_app.jsx @@ -10,24 +10,22 @@ import TitlePage from "@/core/components/TitlePage"; const App = ({Component, pageProps}) => { - return ( - <> - - - - - {pageProps.messages ? : ''} - - - - - - - - - - - ); + return (<> + + + + + {pageProps.messages ? : ''} + + + + + + + + + + ) }; export default App;