From 677388ebfbf968167a50740abc7f4c5780f6f4e6 Mon Sep 17 00:00:00 2001 From: Maicol Battistini Date: Thu, 1 Jun 2023 18:33:14 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=8F=B7=EF=B8=8F=20Fix=20tipizzazio?= =?UTF-8?q?ne=20di=20`DrawerEntry`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/ts/Components/layout/DrawerEntry.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/ts/Components/layout/DrawerEntry.tsx b/resources/ts/Components/layout/DrawerEntry.tsx index 499b1fc38..ab42f5038 100644 --- a/resources/ts/Components/layout/DrawerEntry.tsx +++ b/resources/ts/Components/layout/DrawerEntry.tsx @@ -14,7 +14,8 @@ import {ValueOf} from 'type-fest'; type Icons = ValueOf; -export interface DrawerEntryAttributes extends Attributes, ListItemLink { +export interface DrawerEntryAttributes extends Attributes, Partial { + href: ListItemLink['href']; icon: Icons; }