Fix link json again (#12)

Use id token instead of access token
This commit is contained in:
John Wu
2021-02-03 08:35:06 -08:00
committed by GitHub
parent 42870e10c2
commit 98bcab5b81
7 changed files with 8 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ import { render, screen, cleanup, waitForElementToBeRemoved, waitFor } from "@te
import { setToken } from "../Contexts/UserContext";
import App from ".";
const TEST_TOKEN = { accessToken: { jwtToken: "TEST" }};
const TEST_TOKEN = { idToken: { jwtToken: "TEST" }};
const LOADING_STATUS = "Loading...";
const renderRoute = async (route) => {