From a08f10ccba71c1beff9e60cbd2a8c7b3e65af60c Mon Sep 17 00:00:00 2001 From: Anton Arnautov Date: Fri, 3 Oct 2025 14:58:06 +0200 Subject: [PATCH] Add "team" property to the DefaultChannelData interface --- src/types/defaultDataInterfaces.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/defaultDataInterfaces.ts b/src/types/defaultDataInterfaces.ts index c568dda16e..f0a06a9690 100644 --- a/src/types/defaultDataInterfaces.ts +++ b/src/types/defaultDataInterfaces.ts @@ -3,6 +3,7 @@ export interface DefaultChannelData { image?: string; name?: string; subtitle?: string; + team?: string; } export interface DefaultAttachmentData {}