diff --git a/apps/quick-dapp/src/components/DeployPanel/index.tsx b/apps/quick-dapp/src/components/DeployPanel/index.tsx index 80312d727d..15caec4b81 100644 --- a/apps/quick-dapp/src/components/DeployPanel/index.tsx +++ b/apps/quick-dapp/src/components/DeployPanel/index.tsx @@ -12,7 +12,7 @@ import { AppContext } from '../../contexts'; function DeployPanel(): JSX.Element { const { appState, dispatch } = useContext(AppContext); - const { verified, natSpec } = appState.instance; + const { verified, natSpec, noTerminal } = appState.instance; const [formVal, setFormVal] = useState({ email: localStorage.getItem('__SURGE_EMAIL') || '', password: localStorage.getItem('__SURGE_PASSWORD') || '', @@ -223,6 +223,33 @@ function DeployPanel(): JSX.Element { + + + No Terminal (Optional) + +
+ { + dispatch({ + type: 'SET_INSTANCE', + payload: { noTerminal: e.target.checked }, + }); + }} + checked={noTerminal} + /> + + +
+