@@ -49,7 +49,7 @@
functions.set(await getFunctions(localStorage.token));
models.set(await getModels(localStorage.token));
- await goto('/workspace/functions');
+ await goto('/admin/functions');
}
};
@@ -59,7 +59,7 @@
if (id) {
func = await getFunctionById(localStorage.token, id).catch((error) => {
toast.error(error);
- goto('/workspace/functions');
+ goto('/admin/functions');
return null;
});