You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project currently uses unwrap all over the place, meaning it will crash if anything goes wrong. Need to get rid of this, add proper error handling and forbid unwrap usage via clippy.
Edit: The ServerFnError type provided by leptos is not suited to our use case. We should get rid of that and provide our own error type, maybe simply FrontendError(String).
The text was updated successfully, but these errors were encountered:
The project currently uses unwrap all over the place, meaning it will crash if anything goes wrong. Need to get rid of this, add proper error handling and forbid unwrap usage via clippy.
Edit: The
ServerFnError
type provided by leptos is not suited to our use case. We should get rid of that and provide our own error type, maybe simplyFrontendError(String)
.The text was updated successfully, but these errors were encountered: