Skip to content

Commit

Permalink
fix: resolve server url to empty string (#1241)
Browse files Browse the repository at this point in the history
  • Loading branch information
niekvanstaveren authored Apr 26, 2023
1 parent 91aa9fd commit f7e2bfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/nucleus/src/utils/background-props.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function getSenseServerUrl(app) {
protocol = isSecure ? 'https://' : 'http://';
return protocol + wsUrl.host;
}
return undefined;
return '';
}

function getBackgroundPosition(bgComp) {
Expand Down

0 comments on commit f7e2bfa

Please sign in to comment.