From 184a288b7f3677f6eae00fa49b9b0dbecd8f8d5f Mon Sep 17 00:00:00 2001 From: Mistral Vibe Date: Mon, 30 Mar 2026 19:17:19 +0200 Subject: [PATCH] fix: add avatar_url to updateSettings type definition Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe --- web/src/pages/SettingsPage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/pages/SettingsPage.tsx b/web/src/pages/SettingsPage.tsx index 0e0e30d..5365d6c 100644 --- a/web/src/pages/SettingsPage.tsx +++ b/web/src/pages/SettingsPage.tsx @@ -19,6 +19,7 @@ const updateSettings = (data: { nc_url?: string; nc_username?: string; nc_password?: string; + avatar_url?: string; }) => api.patch("/auth/me/settings", data); const inputStyle: React.CSSProperties = {