diff --git a/packages/client/src/render/getAppId.js b/packages/client/src/render/getAppId.js index 8bcc5fbfca..992df319a5 100644 --- a/packages/client/src/render/getAppId.js +++ b/packages/client/src/render/getAppId.js @@ -2,8 +2,10 @@ const COOKIE_SEPARATOR = ";" const APP_PREFIX = "app_" const KEY_VALUE_SPLIT = "=" -export const getAppId = (allCookies) => { - const cookie = allCookies.split(COOKIE_SEPARATOR).find(cookie => cookie.trim().startsWith("budibase:currentapp")) +export const getAppId = allCookies => { + const cookie = allCookies + .split(COOKIE_SEPARATOR) + .find(cookie => cookie.trim().startsWith("budibase:currentapp")) let appId = location.pathname.split("/")[1] appId = appId && appId.startsWith(APP_PREFIX) ? appId : undefined if (!appId && cookie && cookie.split(KEY_VALUE_SPLIT).length === 2) {