From 42e091cb00c7ad4b9cba9fb6f6cc97246e01681f Mon Sep 17 00:00:00 2001 From: vocksel Date: Wed, 11 Dec 2024 20:44:22 -0800 Subject: [PATCH] Update Storyteller to v0.6.0 (#307) # Problem Storyteller has some updates for nameless storybooks and a QOL change to useStorybooks that we'd like to consume # Solution Bumped Storyteller to v0.6.0 and updated usage of useStorybooks to be compatible # Checklist - [x] Ran `lune run test` locally before merging --- src/Plugin/PluginApp.luau | 2 +- wally.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Plugin/PluginApp.luau b/src/Plugin/PluginApp.luau index 7081df03..85b6cae5 100644 --- a/src/Plugin/PluginApp.luau +++ b/src/Plugin/PluginApp.luau @@ -64,7 +64,7 @@ local function App(props: Props) Sidebar = React.createElement(Sidebar, { selectStory = selectStory, selectStorybook = selectStorybook, - storybooks = storybooks, + storybooks = storybooks.available, }), }), diff --git a/wally.toml b/wally.toml index e95907af..f368d55e 100644 --- a/wally.toml +++ b/wally.toml @@ -8,7 +8,7 @@ exclude = ["*"] [dependencies] ModuleLoader = "flipbook-labs/module-loader@0.6.2" -Storyteller = "flipbook-labs/storyteller@0.5.0" +Storyteller = "flipbook-labs/storyteller@0.6.0" React = "jsdotlua/react@17.0.2" ReactRoblox = "jsdotlua/react-roblox@17.0.2" ReactSpring = "chriscerie/react-spring@2.0.0"