From 367ed52a2865df640219e6caccbc4fb5095bab13 Mon Sep 17 00:00:00 2001 From: syedszeeshan <47701214+syedszeeshan@users.noreply.github.com> Date: Wed, 5 Nov 2025 17:42:20 -0500 Subject: [PATCH] fix(#3119): docs notification banner type property --- src/routes/components/Notificationbanner.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/components/Notificationbanner.tsx b/src/routes/components/Notificationbanner.tsx index 5925c0171..d0cbf0f42 100644 --- a/src/routes/components/Notificationbanner.tsx +++ b/src/routes/components/Notificationbanner.tsx @@ -63,7 +63,7 @@ export default function NotificationBannerPage() { const oldComponentProperties: ComponentProperty[] = [ { name: "type", - type: "success | important | information | emergency", + type: "important | information | event | emergency", description: "Define the context and colour of the badge", }, { @@ -108,7 +108,7 @@ export default function NotificationBannerPage() { const componentProperties: ComponentProperty[] = [ { name: "type", - type: "GoabNotificationType(success | important | information | emergency)", + type: "GoabNotificationType(important | information | event | emergency)", description: "Define the context and colour of the badge", defaultValue: "information" },