From 9fd90177a4862bf2d5c33f4b090cb46190d232cd Mon Sep 17 00:00:00 2001 From: nicholas Date: Thu, 21 Sep 2023 17:33:44 +0200 Subject: [PATCH] Make name optional in BrandsConfiguration type --- packages/lib/src/components/Card/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lib/src/components/Card/types.ts b/packages/lib/src/components/Card/types.ts index de170134aa..c235b495ce 100644 --- a/packages/lib/src/components/Card/types.ts +++ b/packages/lib/src/components/Card/types.ts @@ -202,7 +202,7 @@ export interface CardConfiguration { } export interface BrandConfiguration { - name: string; + name?: string; icon?: string; }