1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00

Adding fix to show the initial create table modal when a new app is created, the same as prod, when testing in cypress.

This commit is contained in:
mike12345567 2022-01-20 12:29:28 +00:00
parent 5638e92ab5
commit 47799b8ef3

View file

@ -7,6 +7,6 @@ exports.fetch = async ctx => {
accountPortalUrl: env.ACCOUNT_PORTAL_URL,
disableAccountPortal: env.DISABLE_ACCOUNT_PORTAL,
// in test need to pretend its in production for the UI (Cypress)
isDev: env.isDev(),
isDev: env.isDev() && !env.isTest(),
}
}