Fix incorrect workspace order

Nate Butler created

Change summary

crates/storybook/src/workspace.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

crates/storybook/src/workspace.rs 🔗

@@ -50,9 +50,9 @@ impl WorkspaceElement {
                                     .flex_col()
                                     .flex_1()
                                     .child(tab_bar(self.tab_bar_scroll_state.clone())),
-                            )
-                            .child(collab_panel(self.right_scroll_state.clone())),
-                    ),
+                            ),
+                    )
+                    .child(collab_panel(self.right_scroll_state.clone())),
             )
             .child(statusbar())
     }