remove warning for using remote compiler

pull/5370/head
Joseph Izang 1 year ago committed by Aniket
parent 7b50e844ed
commit 4210439a56
  1. 2
      apps/vyper/src/app/app.tsx
  2. 2
      apps/vyper/src/app/components/WarnRemote.tsx

@ -30,7 +30,7 @@ const App: React.FC = () => {
const [output, setOutput] = useState<any>({})
const [state, setState] = useState<AppState>({
status: 'idle',
environment: 'local',
environment: 'remote',
localUrl: 'http://localhost:8000/'
})

@ -10,7 +10,7 @@ function WarnRemoteLabel({environment}: Props) {
}
return (
<small className="mx-4 text-warning pb-4">Do not use the remote compiler in a production environment, it is only for testing purposes. For production, use a local compiler.</small>
<small className="mx-4 text-warning pb-4"></small>
)
}

Loading…
Cancel
Save