From b752548742970bb4536a4aa3a79c6ac70c98cbf7 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 15 Oct 2024 17:55:58 -0400 Subject: [PATCH] storybook: Load GPUI with default features (#19253) This PR makes it so the Storybook loads GPUI with the default features enabled. This fixes a panic that would occur when trying to run any of the stories. Release Notes: - N/A --- crates/storybook/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/storybook/Cargo.toml b/crates/storybook/Cargo.toml index a27079489b..34f045466f 100644 --- a/crates/storybook/Cargo.toml +++ b/crates/storybook/Cargo.toml @@ -20,7 +20,7 @@ ctrlc = "3.4" dialoguer = { version = "0.11.0", features = ["fuzzy-select"] } editor.workspace = true fuzzy.workspace = true -gpui.workspace = true +gpui = { workspace = true, default-features = true } indoc.workspace = true language.workspace = true log.workspace = true