fix for new discussions not appearing right away

This commit is contained in:
2024-03-25 09:43:45 +01:00
parent 66e7fa24a1
commit 914f6bdf36
2 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ export async function fetchDiscussion(id){
}
export async function createDiscussion(name){
restPost("/discussion", {name: name});
return restPost("/discussion", {name: name});
}