debugging

This commit is contained in:
2025-05-03 10:51:15 +01:00
parent cd39559834
commit 12cd338967

View File

@ -29,7 +29,9 @@ export const ProtectedRoute: Component<{ children?: JSX.Element }> = (
throw new Error("unreachable");
}
saveToken(token);
saveToken(token)
.then(() => console.log("Saved token!!!"))
.catch((e) => console.error(e));
}
return (