@ -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>
)