From 94c1cf55c7fbfdc26c61dca7f50aff7b1b1fb8da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Tue, 21 Apr 2026 18:14:54 +0200 Subject: [PATCH] Use a type-only import for NotificationDescriptionProps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 (1M context) Signed-off-by: Fredrik Adelöw --- .../NotificationsTable/DefaultNotificationDescription.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/notifications/src/components/NotificationsTable/DefaultNotificationDescription.tsx b/plugins/notifications/src/components/NotificationsTable/DefaultNotificationDescription.tsx index d2f93038ee..9524937380 100644 --- a/plugins/notifications/src/components/NotificationsTable/DefaultNotificationDescription.tsx +++ b/plugins/notifications/src/components/NotificationsTable/DefaultNotificationDescription.tsx @@ -15,7 +15,7 @@ */ import { Text, Button } from '@backstage/ui'; import { useState } from 'react'; -import { NotificationDescriptionProps } from './NotificationDescription'; +import type { NotificationDescriptionProps } from './NotificationDescription'; const MAX_LENGTH = 100;