We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0492cef commit aa51d6cCopy full SHA for aa51d6c
components/dashboard/src/projects/ProjectSettings.tsx
@@ -83,7 +83,7 @@ export default function ProjectSettingsView() {
83
84
const newSettings = { ...project.settings, ...settings };
85
try {
86
- getGitpodService().server.updateProjectPartial({ id: project.id, settings: newSettings });
+ await getGitpodService().server.updateProjectPartial({ id: project.id, settings: newSettings });
87
setProject({ ...project, settings: newSettings });
88
} catch (error) {
89
toast(error?.message || "Oh no, there was a problem with updating project settings.");
0 commit comments