diff --git a/client/.env b/client/.env index 57fe7afcd..1f93d77af 100644 --- a/client/.env +++ b/client/.env @@ -6,8 +6,8 @@ REACT_APP_SITE_ROOT_URL_PROD=https://thoth.latitude.io REACT_APP_SITE_ROOT_URL=http://localhost:3001 REACT_APP_LAPI_ROOT_URL=http://localhost:8000 -#REACT_APP_LAPI_ROOT_URL_PROD=https://api.latitude.io -#REACT_APP_SITE_STAGING=https://62264f21c3a9860ad1e5bdd3--optimistic-turing-def916.netlify.app/ +REACT_APP_LAPI_ROOT_URL_PROD=https://api.latitude.io +REACT_APP_SITE_STAGING=https://62264f21c3a9860ad1e5bdd3--optimistic-turing-def916.netlify.app/ # Oauth Client Id REACT_APP_OAUTH_CLIENT_ID=a6b51c87-7565-42ab-a4b0-38a07f3b6c56 \ No newline at end of file diff --git a/core/src/plugins/inspectorPlugin/Inspector.ts b/core/src/plugins/inspectorPlugin/Inspector.ts index 35dd6932b..5cbe22c99 100644 --- a/core/src/plugins/inspectorPlugin/Inspector.ts +++ b/core/src/plugins/inspectorPlugin/Inspector.ts @@ -18,7 +18,6 @@ type DataControlData = Record export class Inspector { // Stub of function. Can be a nodes catch all onData - onData = Function cache: Record = {} node: ThothNode component: ThothComponent @@ -175,6 +174,7 @@ export class Inspector { } handleData(update: Record) { + console.log('Handling data!', update) // store all data controls inside the nodes data // WATCH in case our graphs start getting quite large. if (update.dataControls) this.cacheControls(update.dataControls) @@ -182,7 +182,8 @@ export class Inspector { const { data } = update // Send data to a possibel node global handler - this.onData(data) + // Turned off until the pattern might be useful + // this.onData(data) // go over each data control const dataControlArray = Array.from(this.dataControls)