Skip to content

Commit

Permalink
aeaeaeae
Browse files Browse the repository at this point in the history
  • Loading branch information
Ember-ruby committed Jun 29, 2024
1 parent 0f67563 commit 828f97d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ class NavigationPanel extends Component {
<ColumnLink transparent to='/public/local' isActive={this.isFirehoseActive} icon='globe' text={intl.formatMessage(messages.firehose)} />
)}

{(!signedIn && timelinePreview_remote) && (
{(!signedIn && timelinePreview_remote && !timelinePreview) && (
<ColumnLink transparent to='/public/remote' isActive={this.isFirehoseActive} icon='globe' text={intl.formatMessage(messages.firehose)} />
)}

{(!signedIn && timelinePreview) && (
{(!signedIn && timelinePreview && !timelinePreview_remote) && (
<ColumnLink transparent to='/public' isActive={this.isFirehoseActive} icon='globe' text={intl.formatMessage(messages.firehose)} />
)}

Expand Down

0 comments on commit 828f97d

Please sign in to comment.