fix reversal of server status mock handler
This commit is contained in:
@@ -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',
|
||||
})
|
||||
);
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user