File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
airflow-core/src/airflow/ui/src Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ import { getRedirectPath } from "src/utils/links.ts";
33
33
import i18n from "./i18n/config" ;
34
34
import { client } from "./queryClient" ;
35
35
import { system } from "./theme" ;
36
- import { clearToken , tokenHandler , clearRefreshTokenCookie } from "./utils/tokenHandler" ;
36
+ import { clearToken , tokenHandler } from "./utils/tokenHandler" ;
37
37
38
38
// redirect to login page if the API responds with unauthorized or forbidden errors
39
39
axios . interceptors . response . use (
Original file line number Diff line number Diff line change 19
19
import type { InternalAxiosRequestConfig } from "axios" ;
20
20
21
21
export const TOKEN_STORAGE_KEY = "token" ;
22
-
23
22
const getTokenFromCookies = ( ) : string | undefined => {
24
23
const cookies = document . cookie . split ( ";" ) ;
25
24
You can’t perform that action at this time.
0 commit comments