diff --git a/crates/story/src/assets.rs b/crates/story/src/assets.rs
index 8375203f..57ca5efd 100644
--- a/crates/story/src/assets.rs
+++ b/crates/story/src/assets.rs
@@ -1,4 +1,6 @@
-use anyhow::anyhow;
+use std::borrow::Cow;
+
+use anyhow::{anyhow, Result};
use gpui::AssetSource;
use rust_embed::RustEmbed;
@@ -10,7 +12,11 @@ use rust_embed::RustEmbed;
pub struct Assets;
impl AssetSource for Assets {
- fn load(&self, path: &str) -> gpui::Result