upgraded cancelation process

This commit is contained in:
2025-04-07 17:27:09 +02:00
parent 7a00b146bd
commit d6750c015f
7 changed files with 55 additions and 64 deletions

View File

@@ -29,7 +29,7 @@ async function onSubmit(values : any, { setErrors } : any) {
const siteControlStore = useSiteControlStore();
const { username } = storeToRefs(userStore);
username.value = body.data.displayName;
await siteControlStore.newOrder(true);
await siteControlStore.newOrder("/");
}
}