From 9e57530bde8f0bb1d0a7411eaf911970a16508e4 Mon Sep 17 00:00:00 2001 From: Chaim Lev-Ari Date: Wed, 11 Oct 2023 10:30:14 +0300 Subject: [PATCH] fix(build): handle warning about userId [EE-5612] (#10444) --- app/portainer/users/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/portainer/users/types.ts b/app/portainer/users/types.ts index 4b47362b8..93bbdb9e8 100644 --- a/app/portainer/users/types.ts +++ b/app/portainer/users/types.ts @@ -1,6 +1,6 @@ import { EnvironmentId } from '@/react/portainer/environments/types'; -import { UserId } from './types/user-id'; +import { type UserId } from './types/user-id'; export { type UserId };