From bfcf3209f5b3b6ddd61e746c6e3137017b58ee4f Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 21 Feb 2025 11:53:24 +0100 Subject: [PATCH] revert role change, since it incompatible with directus --- src/types/UserItem.d.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/types/UserItem.d.ts b/src/types/UserItem.d.ts index 5f3a58b4..00942294 100644 --- a/src/types/UserItem.d.ts +++ b/src/types/UserItem.d.ts @@ -5,10 +5,8 @@ import type { Profile } from './Profile' */ export interface UserItem { id?: string - role?: { - id: string - name: string - } + // eslint-disable-next-line @typescript-eslint/no-explicit-any + role?: any email?: string password?: string profile?: Profile