From 72a8e7fb911e2c1a6a836ea48b883a1fb377cc61 Mon Sep 17 00:00:00 2001 From: ewandor Date: Thu, 10 Apr 2025 18:15:00 +0200 Subject: [PATCH] Correcting bug in import --- gui/rpk-gui/src/providers/auth-provider.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gui/rpk-gui/src/providers/auth-provider.tsx b/gui/rpk-gui/src/providers/auth-provider.tsx index 4c5f272..ab05f42 100644 --- a/gui/rpk-gui/src/providers/auth-provider.tsx +++ b/gui/rpk-gui/src/providers/auth-provider.tsx @@ -1,7 +1,6 @@ import isEmpty from 'lodash/isEmpty'; -import { AuthProvider } from "@refinedev/core"; -import {IUser} from "../interfaces"; -import {OnErrorResponse} from "@refinedev/core/src/contexts/auth/types"; +import { AuthProvider, OnErrorResponse } from "@refinedev/core"; +import { IUser } from "../interfaces"; const API_URL = "/api/v1"; const LOCAL_STORAGE_USER_KEY = "rpk-gui-current-user";