refactor: make the serverside error handling more robust

This commit is contained in:
2024-08-18 19:09:40 +02:00
parent ad70b5cfa8
commit f0f24d33ba
12 changed files with 301 additions and 43 deletions

View File

@@ -10,7 +10,7 @@ pub(crate) fn Home() -> Element {
ProjectForm {
onsubmit: move |title| {
spawn(async move {
let _ = create_project(title).await;
create_project(title).await;
});
}
}