This commit is contained in:
PotapovaA 2026-09-07 12:59:54 +03:00
parent 14805dbfc4
commit abbb77ba3a

View File

@ -186,7 +186,7 @@ const ProductionAuthProvider = ({ children }) => {
}; };
export const AuthProvider = ({ children }) => { export const AuthProvider = ({ children }) => {
if (Config.IS_PRODUCTION) { if (!Config.DEBUG) {
return <ProductionAuthProvider>{children}</ProductionAuthProvider>; return <ProductionAuthProvider>{children}</ProductionAuthProvider>;
} }