this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix TS constants

+5 -3
+5 -3
ts/bgs-dash/src/constants.ts
··· 1 + const isDev = 2 + window.location.hostname === "localhost" || 3 + window.location.hostname === "jaz1"; 4 + 1 5 const BGS_HOST = `${window.location.protocol}//${window.location.hostname}:${ 2 - window.location.hostname === "localhost" || "jaz1" 3 - ? "2470" 4 - : window.location.port 6 + isDev ? "2470" : window.location.port 5 7 }`; 6 8 7 9 export { BGS_HOST };