Skip to content

Commit

Permalink
#2687 replacing more Meet with Notes
Browse files Browse the repository at this point in the history
  • Loading branch information
K committed May 24, 2024
1 parent e926708 commit ff4de7f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
3 changes: 2 additions & 1 deletion modules/offers/client/components/NoMeets.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export default function NoMeets() {
<p>
<a
className="btn btn-action btn-inverse-primary"
href="/offer/meet/add"
href={`https://notes.trustroots.org/#user=${user.username}`}
target="_blank"
>
{t('Add it to map!')}
</a>
Expand Down
4 changes: 2 additions & 2 deletions modules/pages/client/components/Navigation.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export default function Navigation({ user, onSignout }) {
{t('Host')}
</a>

<a href="/offer/meet" className="list-group-item">
{t('Meet')}
<a href={`https://notes.trustroots.org/#user=${user.username}`} className="list-group-item">
{t('Notes')}
</a>

<a
Expand Down
12 changes: 1 addition & 11 deletions modules/users/client/components/HostingAndMeetPanel.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function HostingAndMeetPanel() {

return (
<div className="panel panel-default">
<div className="panel-heading">{t('Hosting & meet')}</div>
<div className="panel-heading">{t('Hosting')}</div>
<div className="panel-body">
<div className="form-horizontal">
<p>
Expand All @@ -29,16 +29,6 @@ export default function HostingAndMeetPanel() {
{t('Modify your hosting location')}
</a>
</p>
<p>
<a
role="button"
href="/offer/meet"
className="btn btn-inverse-primary"
>
<Icon icon="users" />
{t('Modify your meet locations')}
</a>
</p>
</div>
</div>
</div>
Expand Down

0 comments on commit ff4de7f

Please sign in to comment.