From 91e077d9b2409de8a3531ceb40ea40aac0bb0885 Mon Sep 17 00:00:00 2001 From: sylenien Date: Mon, 2 Jan 2023 14:51:48 +0100 Subject: [PATCH] fix(ui): fix duck type --- frontend/app/duck/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/duck/user.js b/frontend/app/duck/user.js index 8ef2bf5ab..36c7dd778 100644 --- a/frontend/app/duck/user.js +++ b/frontend/app/duck/user.js @@ -2,7 +2,6 @@ import { List, Map } from 'immutable'; import Client from 'Types/client'; import { deleteCookie } from 'App/utils'; import Account from 'Types/account'; -import { DELETE } from './jwt'; import withRequestState, { RequestTypes } from './requestStateCreator'; export const LOGIN = new RequestTypes('user/LOGIN'); @@ -38,6 +37,7 @@ const setClient = (state, data) => { } export const UPDATE_JWT = 'jwt/UPDATE'; +export const DELETE = 'jwt/DELETE' export function setJwt(data) { return { type: UPDATE_JWT,