fix: re-add display url

This commit is contained in:
Daniel Lautzenheiser
2023-04-17 12:18:08 -04:00
parent 117320046f
commit 5462b1d2d1
2 changed files with 16 additions and 1 deletions

View File

@ -14,3 +14,7 @@ export function selectConfig(state: RootState) {
export function selectIsSearchEnabled(state: RootState) {
return state.config.config?.search !== false;
}
export function selectDisplayUrl(state: RootState) {
return state.config.config?.display_url;
}