Browse Source

Fix fullstack hackernews example instructions (#3597)

Evan Almloff 5 months ago
parent
commit
e199e86dad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      example-projects/fullstack-hackernews/src/main.rs

+ 1 - 1
example-projects/fullstack-hackernews/src/main.rs

@@ -172,7 +172,7 @@ fn Preview(story: ReadOnlySignal<PreviewState>) -> Element {
         active_story: Some(id),
     } = story()
     else {
-        return rsx! {"Hover over a story to preview it here"};
+        return rsx! {"Click on a story to preview it here"};
     };
 
     let story = use_server_future(use_reactive!(|id| get_story(id)))?;