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 a875705 commit 6a52b4fCopy full SHA for 6a52b4f
src/Exceptionless.Web/ClientApp/src/routes/(app)/project/add/+page.svelte
@@ -31,9 +31,9 @@
31
32
toast.dismiss(toastId);
33
try {
34
- await createProject.mutateAsync(form.data);
+ const { id } = await createProject.mutateAsync(form.data);
35
toastId = toast.success('Project added successfully');
36
- await goto('/next/project/configure?redirect=true');
+ await goto(`/next/project/${id}/configure?redirect=true`);
37
38
// HACK: This is to prevent sveltekit from stealing focus
39
result.type = 'failure';
0 commit comments