remove warning for using remote compiler

pull/4383/head^2
Joseph Izang 11 months ago committed by Aniket
parent cf58aff990
commit e4b935b91e
  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 [output, setOutput] = useState<any>({})
const [state, setState] = useState<AppState>({ const [state, setState] = useState<AppState>({
status: 'idle', status: 'idle',
environment: 'local', environment: 'remote',
localUrl: 'http://localhost:8000/' localUrl: 'http://localhost:8000/'
}) })

@ -10,7 +10,7 @@ function WarnRemoteLabel({environment}: Props) {
} }
return ( 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