From abbb77ba3acc1a14fbdfe0aa608cfd68667a88e0 Mon Sep 17 00:00:00 2001 From: PotapovaA Date: Mon, 7 Sep 2026 12:59:54 +0300 Subject: [PATCH] fix --- web/src/app/context/AuthProvider.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app/context/AuthProvider.jsx b/web/src/app/context/AuthProvider.jsx index 02b5016..bcd0d4b 100644 --- a/web/src/app/context/AuthProvider.jsx +++ b/web/src/app/context/AuthProvider.jsx @@ -186,7 +186,7 @@ const ProductionAuthProvider = ({ children }) => { }; export const AuthProvider = ({ children }) => { - if (Config.IS_PRODUCTION) { + if (!Config.DEBUG) { return {children}; }