Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Commit

Permalink
show "OK" button on complete page when logged in instead of "Try Fire…
Browse files Browse the repository at this point in the history
…fox Send"
  • Loading branch information
dannycoates committed Jul 29, 2020
1 parent 2f503c9 commit 87d46f7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/ui/downloadCompleted.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const html = require('choo/html');
const assets = require('../../common/assets');

module.exports = function(state) {
const btnText = state.user.loggedIn ? 'okButton' : 'sendYourFilesLink';
return html`
<div
id="download-complete"
Expand All @@ -11,12 +12,17 @@ module.exports = function(state) {
${state.translate('downloadFinish')}
</h1>
<img src="${assets.get('completed.svg')}" class="my-8 h-48" />
<p class="text-grey-80 leading-normal dark:text-grey-40">
<p
class="text-grey-80 leading-normal dark:text-grey-40 ${state.user
.loggedIn
? 'hidden'
: ''}"
>
${state.translate('trySendDescription')}
</p>
<p class="my-5">
<a href="/" class="btn rounded-lg flex items-center mt-4" role="button"
>${state.translate('sendYourFilesLink')}</a
>${state.translate(btnText)}</a
>
</p>
<p class="">
Expand Down

0 comments on commit 87d46f7

Please sign in to comment.