Skip to content

Commit fa4c35f

Browse files
committed
make parameter defaulting do the right thing
1 parent 2fbf64e commit fa4c35f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/selectors/configSelectors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const serverLogoSelector = createSelector(configSelector, (config) => {
1111
const ASSET_BASE_URL = new URL('/assets/', window.location.href);
1212
return new URL(config.logo.replace(/^\//, ''), ASSET_BASE_URL);
1313
}
14-
return null;
14+
return undefined;
1515
});
1616

1717
export const requestOptionsSelector = createSelector(

0 commit comments

Comments
 (0)