fix ui: revert spots check (#2587)

This commit is contained in:
Delirium 2024-09-16 15:59:25 +02:00 committed by GitHub
parent 71e7552899
commit abe440f729
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,7 +53,7 @@ const SpotsListHeader = observer(
<ReloadButton buttonSize={'small'} onClick={onRefresh} iconSize={16} /> <ReloadButton buttonSize={'small'} onClick={onRefresh} iconSize={16} />
</div> </div>
{tenantHasSpots ? null : ( {tenantHasSpots ? (
<div className="flex gap-2 items-center"> <div className="flex gap-2 items-center">
<div className={'ml-auto'}> <div className={'ml-auto'}>
{selectedCount > 0 && ( {selectedCount > 0 && (
@ -91,7 +91,7 @@ const SpotsListHeader = observer(
/> />
</div> </div>
</div> </div>
)} ) : null}
</div> </div>
); );
} }