https://github.com/user-attachments/assets/cc6dd8cb-03be-454c-a909-a1d07805ead6 See in the video demonstrated above, it turns ```rs Show when={move || reroll_value_cur.get()>0}> ``` into ```rs <Show when=move || reroll_value_cur.get() > 0> ``` Missing the curly brackets here makes the inequality check (>0) not be detected properly.