summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/Content.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index a300f6f..ce3c018 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -118,7 +118,9 @@ export function Content() {
fieldName: keyof ConfigurationData,
value: boolean | number | string | string[],
cleanupLaunchOptions = false,
- ) => save({ ...config, [fieldName]: value }, cleanupLaunchOptions);
+ ) => {
+ await save({ ...config, [fieldName]: value }, cleanupLaunchOptions);
+ };
const setup = (
<SetupTab