Fix settings saving

This commit is contained in:
2024-10-22 21:21:18 +02:00
parent a231fc48c2
commit 05dd3a83b0
8 changed files with 66 additions and 47 deletions

View File

@@ -81,7 +81,7 @@ export const saveWorkspaceSettings = async (workspaceId, settings) => {
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ settings }),
body: JSON.stringify(settings),
}
);
return response.json();