diff --git a/frontend/react/src/olympusapp.ts b/frontend/react/src/olympusapp.ts index b00a7bf6..31acd33d 100644 --- a/frontend/react/src/olympusapp.ts +++ b/frontend/react/src/olympusapp.ts @@ -179,7 +179,7 @@ export class OlympusApp { const urlParams = new URLSearchParams(window.location.search); const server = urlParams.get("server"); - if (!server) { + if (server === null) { this.setState(OlympusState.IDLE); /* If no profile exists already with that name, create it from scratch from the defaults */ if (this.getProfile() === null) this.saveProfile();