diff --git a/code/lib/ui/src/components/sidebar/Menu.stories.tsx b/code/lib/ui/src/components/sidebar/Menu.stories.tsx
index edced8199cba..f73a5fe661e8 100644
--- a/code/lib/ui/src/components/sidebar/Menu.stories.tsx
+++ b/code/lib/ui/src/components/sidebar/Menu.stories.tsx
@@ -55,7 +55,11 @@ export const Expanded = () => {
false,
false
);
- return ;
+ return (
+
+
+
+ );
};
Expanded.play = async ({ canvasElement }) => {
const canvas = within(canvasElement);
@@ -78,6 +82,10 @@ export const ExpandedWithoutReleaseNotes = () => {
false,
false
);
- return ;
+ return (
+
+
+
+ );
};
ExpandedWithoutReleaseNotes.play = Expanded.play;