···66use crate::examples::{HERO_SAMPLE_HANDLES, first_hero_sample_handle};
77use crate::session::SessionIdentity;
88use crate::thing_card::ThingCard;
99-use crate::thing_detail::thing_detail_href;
1091110/// Cookie set client-side when the logged-out hero band is dismissed; read
1211/// server-side so SSR omits the band on return without a hydration flash.
···209208210209#[component]
211210fn BrowseThingCard(thing: library::ThingViewBasic) -> Element {
212212- let detail_href = thing_detail_href(&thing.uri);
213213- rsx! { ThingCard { thing, detail_href } }
211211+ rsx! { ThingCard { thing } }
214212}
215213216214#[component]