[Feature Request] Close Bottom Sheet When Story is Selected

Author: shahzore-qureshi-usmobileCreated Sep 15, 2026Updated Sep 15, 2026

Hi!

Firstly, thanks for your work on this project!

Today I used patch-package to patch @storybook/[email protected] for the project I'm working on.

Here is the diff that solved my problem:

diff
diff --git a/node_modules/@storybook/react-native-ui/src/Layout.tsx b/node_modules/@storybook/react-native-ui/src/Layout.tsx
index 56fbc7a..1446a46 100644
--- a/node_modules/@storybook/react-native-ui/src/Layout.tsx
+++ b/node_modules/@storybook/react-native-ui/src/Layout.tsx
@@ -234,6 +234,7 @@ export const Layout = ({
     const channel = addons.getChannel();
 
     channel.emit(SET_CURRENT_STORY, { storyId: newStoryId });
+    mobileMenuDrawerRef.current?.setMobileMenuOpen(false);
   }, []);
 
   return (

This issue body was partially generated by patch-package.

Source: storybookjs/react-native