Skip to content

Commit

Permalink
Fix fullstack hackernews example instructions (#3597)
Browse files Browse the repository at this point in the history
  • Loading branch information
ealmloff authored Jan 21, 2025
1 parent aba2e73 commit e199e86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example-projects/fullstack-hackernews/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)))?;
Expand Down

0 comments on commit e199e86

Please sign in to comment.