We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f1d57e commit 24ac2efCopy full SHA for 24ac2ef
web/src/context/AtlasProvider.tsx
@@ -99,8 +99,6 @@ const AtlasProvider: React.FC<{ children?: React.ReactNode }> = ({ children }) =
99
let timeoutId: NodeJS.Timeout;
100
101
const verifyAndSchedule = () => {
102
- console.log("checking");
103
-
104
// initial verfiy check
105
const isValid = verifySession();
106
setIsVerified(isValid);
@@ -167,7 +165,6 @@ const AtlasProvider: React.FC<{ children?: React.ReactNode }> = ({ children }) =
167
165
(error instanceof GraphQLError && error.extensions["code"] === "UNAUTHENTICATED")
168
166
) {
169
setIsVerified(false);
170
- throw error;
171
}
172
throw error;
173
0 commit comments