diff --git a/src/utils/index.js b/src/utils/index.js index 56333b3074..18238ce946 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -189,7 +189,13 @@ export const formatNumberWithCommas = (number) => { * @returns {Boolean} True if the app is running locally. */ export const isRunningLocally = () => { - const hosts = ['localhost', '127.0.0.1', 'demo.kedro.org', 'gitpod']; + const hosts = [ + 'localhost', + '127.0.0.1', + 'demo.kedro.org', + 'gitpod', + 'kedro-org', + ]; const itemFound = hosts.some((host) => window.location.hostname.includes(host) );