mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
properly serialize errors
This commit is contained in:
@@ -92,7 +92,9 @@ impl SharedContext for SsrSharedContext {
|
||||
_ = write!(
|
||||
initial_chunk,
|
||||
"[{}, {}, {:?}],",
|
||||
error.0 .0, error.1, error.2
|
||||
error.0 .0,
|
||||
error.1,
|
||||
error.2.to_string()
|
||||
);
|
||||
}
|
||||
initial_chunk.push_str("];");
|
||||
|
||||
Reference in New Issue
Block a user