mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
properly serialize errors
This commit is contained in:
parent
07e878adf7
commit
1d2d11b83d
1 changed files with 3 additions and 1 deletions
|
@ -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("];");
|
||||
|
|
Loading…
Reference in a new issue