Skip to content

Commit e785e24

Browse files
committed
spelling mistake
1 parent d45a6a0 commit e785e24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/APIClients/BaseAPIClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ baseAPIClient.interceptors.request.use(async (config: AxiosRequestConfig) => {
3636
if (
3737
decodedToken &&
3838
// If it a string (and not an object) then something went wrong
39-
(typeof decodedToken === "string" ||
39+
(typeof decodedToken === "string" ||
4040
// Checks the time of expiration in seconds (division by 1000 because its in ms)
4141
decodedToken.exp <= Math.round(new Date().getTime() / 1000))
4242
) {

0 commit comments

Comments
 (0)