diff --git a/client/src/fetchHelpers.ts b/client/src/fetchHelpers.ts
index af1a14e4..e4f38c93 100644
--- a/client/src/fetchHelpers.ts
+++ b/client/src/fetchHelpers.ts
@@ -68,6 +68,10 @@ export const itDelete = (url: RequestInfo) => {
return itPost(url, {}, { method: "DELETE" });
};
+export const itPut = (url: RequestInfo, data: unknown) => {
+ return itPost(url, data, { method: "PUT" });
+};
+
const itGetPromiseCache = new Map>();
export function bustItGetCache(key?: string) {
diff --git a/client/src/pages/onboarding/AccountProfile.vue b/client/src/pages/onboarding/AccountProfile.vue
index ad221468..d482882b 100644
--- a/client/src/pages/onboarding/AccountProfile.vue
+++ b/client/src/pages/onboarding/AccountProfile.vue
@@ -1,27 +1,49 @@
@@ -62,7 +81,11 @@ const nextRoute = computed(() => {
andere Personen einfacher finden.
-
@@ -94,7 +117,7 @@ const nextRoute = computed(() => {