This commit is contained in:
lingdocs 2021-09-18 00:48:54 -04:00
parent 4b820ba231
commit 9c2c547c13
1 changed files with 11 additions and 9 deletions

View File

@ -38,15 +38,17 @@ function App(props: RouteComponentProps) {
const { setUser } = useUser();
useEffect(() => {
ReactGA.pageview(window.location.pathname);
fetch("https://account.lingdocs.com/api/user").then((res) => res.json()).then((res) => {
console.log("fetched user info");
if (res.user) {
const user = res.user as AT.LingdocsUser
setUser(user);
} else {
setUser(undefined);
}
}).catch(console.error);
fetch("https://account.lingdocs.com/api/user", { credentials: "include" })
.then((res) => res.json())
.then((res) => {
console.log("fetched user info");
if (res.user) {
const user = res.user as AT.LingdocsUser
setUser(user);
} else {
setUser(undefined);
}
}).catch(console.error);
// eslint-disable-next-line
}, []);
useEffect(() => {