Currently axum-activity-feed.rs is generating invalid stream events:
|
let patch = PatchSignals::new(r#"{{"generating": true}}"#); |
Produces:
signals {{"generating": true}}
When it should be producing:
signals {"generating": true}
I am thinking this is a copy paste error from the format! macro being used in the loop?