aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/src/components/locationBar/LocationBar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/renderer/src/components/locationBar/LocationBar.tsx')
-rw-r--r--packages/renderer/src/components/locationBar/LocationBar.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/renderer/src/components/locationBar/LocationBar.tsx b/packages/renderer/src/components/locationBar/LocationBar.tsx
index fc9c147..54ead8e 100644
--- a/packages/renderer/src/components/locationBar/LocationBar.tsx
+++ b/packages/renderer/src/components/locationBar/LocationBar.tsx
@@ -43,11 +43,12 @@ const LocationBarRoot = styled('header', {
43 43
44function LocationBar(): JSX.Element { 44function LocationBar(): JSX.Element {
45 const { 45 const {
46 settings: { selectedService, showLocationBar }, 46 shared: { locationBarVisible },
47 settings: { selectedService },
47 } = useStore(); 48 } = useStore();
48 49
49 return ( 50 return (
50 <LocationBarRoot id={LOCATION_BAR_ID} hidden={!showLocationBar}> 51 <LocationBarRoot id={LOCATION_BAR_ID} hidden={!locationBarVisible}>
51 <NavigationButtons service={selectedService} /> 52 <NavigationButtons service={selectedService} />
52 <LocationTextField service={selectedService} /> 53 <LocationTextField service={selectedService} />
53 <ExtraButtons service={selectedService} /> 54 <ExtraButtons service={selectedService} />