diff --git a/apps/web/app/(dashboard)/settings/page.tsx b/apps/web/app/(dashboard)/settings/page.tsx index ca31a753..da0c2678 100644 --- a/apps/web/app/(dashboard)/settings/page.tsx +++ b/apps/web/app/(dashboard)/settings/page.tsx @@ -131,8 +131,8 @@ export default function SettingsPage() { try { const updated = await api.updateWorkspace(workspace.id, { name, - description: description || undefined, - context: context || undefined, + description, + context, }); updateWorkspace(updated); setSaved(true);