From 75af2b31bac04c8056c8b0bc6f16e7de4299581c Mon Sep 17 00:00:00 2001 From: Floyd Wang Date: Mon, 28 Jul 2025 09:43:29 +0800 Subject: [PATCH] story: Fix the startup error in the dock example (#1093) --- crates/story/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/story/src/lib.rs b/crates/story/src/lib.rs index f5008d6a..5351dfdb 100644 --- a/crates/story/src/lib.rs +++ b/crates/story/src/lib.rs @@ -651,6 +651,7 @@ impl StoryState { "AccordionStory" => story!(AccordionStory), "SidebarStory" => story!(SidebarStory), "FormStory" => story!(FormStory), + "NotificationStory" => story!(NotificationStory), _ => { unreachable!("Invalid story klass: {}", self.story_klass) }