Skip to content

Commit 11c5750

Browse files
committed
Fix types
1 parent 10894f6 commit 11c5750

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/app/src/app/overmind/namespaces/server/actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export const onSSEMessage: Action<{
119119
{
120120
label: 'Open Browser Pane',
121121
run: () => {
122-
actions.server.onBrowserFromPortOpened({ port });
122+
actions.server.onBrowserFromPortOpened(port);
123123
},
124124
},
125125
],

packages/app/src/app/pages/Sandbox/Editor/Workspace/screens/Server/EnvVars.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const EnvVars = () => {
2626
}, [editor]);
2727

2828
const deleteEnv = name => {
29-
editor.deleteEnvironmentVariable({ name });
29+
editor.deleteEnvironmentVariable(name);
3030
};
3131
const envVars = currentSandbox.environmentVariables;
3232

packages/app/src/app/pages/Sandbox/Editor/Workspace/screens/Server/Ports.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const Ports = () => {
2323
} = useOvermind();
2424

2525
const openPort = (port: ServerPort) => {
26-
onBrowserFromPortOpened({ port });
26+
onBrowserFromPortOpened(port);
2727
};
2828

2929
const openGraphiQLPort = () => {

0 commit comments

Comments
 (0)