Skip to content

Commit

Permalink
fix: boolean logic for feature last seen toolbar (#8016)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymek authored Aug 30, 2024
1 parent 2d99ba7 commit a918590
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,7 @@ export const LastSeenTooltip = ({
</StyledDescriptionHeader>
<ConditionallyRender
condition={
Boolean(environments) &&
Boolean(environmentsHaveLastSeen) &&
false
Boolean(environments) && Boolean(environmentsHaveLastSeen)
}
show={
<StyledListContainer>
Expand Down

0 comments on commit a918590

Please sign in to comment.