We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8def26 commit 7b2488eCopy full SHA for 7b2488e
e2e/solid-start/serialization-adapters/src/routes/server-function/custom-error.tsx
@@ -37,7 +37,7 @@ function RouteComponent() {
37
trigger valid input
38
</button>
39
<div data-testid="server-function-valid-response">
40
- {JSON.stringify(validResponse)}
+ {JSON.stringify(validResponse())}
41
</div>
42
43
<br />
@@ -62,7 +62,7 @@ function RouteComponent() {
62
foo: invalidResponse()?.foo,
63
bar: invalidResponse()?.bar.toString(),
64
})
65
- : JSON.stringify(validResponse)}
+ : JSON.stringify(invalidResponse())}
66
67
68
)
0 commit comments