fix reversal of server status mock handler

This commit is contained in:
Jacob Overgaard
2022-06-29 13:14:59 +02:00
parent 7ef5bbe118
commit 368ffb5208

View File

@@ -8,7 +8,7 @@ export const handlers = [
// Respond with a 200 status code
ctx.status(200),
ctx.json<StatusResponse>({
serverStatus: import.meta.env.VITE_UMBRACO_INSTALL_STATUS !== 'false' ? 'must-install' : 'running',
serverStatus: import.meta.env.VITE_UMBRACO_INSTALL_STATUS !== 'false' ? 'running' : 'must-install',
})
);
}),