-
Notifications
You must be signed in to change notification settings - Fork 593
Open
Description
#4750 was supposed to allow for the watermark in Connect UI to be disabled but the UI still doesn't allow it.
I'm running nangohq/nango-server hosted-0.69.5 direct from Docker Hub,
I can see that canDisableConnectUIWatermark returns true but still no joy. I'm either missing an env var or there's a bug in the UI.
admin@server:~/dev/nango$ docker exec nango node -e "
const settings = require('./packages/shared/dist/services/connect-ui-settings.service.js');
console.log('canDisableConnectUIWatermark(null):', settings.canDisableConnectUIWatermark(null));
"
canDisableConnectUIWatermark(null): true
admin@server:~/dev/nango$ docker exec nango node -e "
const detection = require('./packages/utils/dist/environment/detection.js');
console.log('isHosted:', detection.isHosted);
console.log('isCloud:', detection.isCloud);
console.log('isLocal:', detection.isLocal);
console.log('isEnterprise:', detection.isEnterprise);
console.log('isDocker:', detection.isDocker);
"
isHosted: true
isCloud: false
isLocal: false
isEnterprise: false
isDocker: true
Metadata
Metadata
Assignees
Labels
No labels