Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit c0e8a17

Browse files
committed
Link doesn't work with offsite links. fixes #500
1 parent aeec1ee commit c0e8a17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/js/components/ActionItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ActionItem extends Component {
1717
<div className="action-item">
1818
<div>{this.props.action}</div>
1919
<div><small>{this.props.detail}</small></div>
20-
<Link className="tooltip-link" to={this.props.destinationUrl}> › Go to {this.props.destinationName}</Link>
20+
<a className="tooltip-link" href={this.props.destinationUrl}> › Go to {this.props.destinationName}</a>
2121
</div>
2222
}
2323
</div>

app/js/components/StatusBar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ class StatusBar extends Component {
157157
/>
158158
<ActionItem
159159
action="Sign in to your first Blockstack app"
160-
destinationUrl="/"
160+
destinationUrl="https://helloblockstack.com"
161161
destinationName="Apps"
162162
completed={this.signedIntoFirstApp()}
163163
/>

0 commit comments

Comments
 (0)