Skip to content

Commit

Permalink
fix free trial length bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronsutter committed Apr 28, 2021
1 parent 66af031 commit 7510e35
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plottr",
"version": "2021.4.26",
"version": "2021.4.28",
"description": "A visual story-planning tool",
"repository": "https://github.com/cameronsutter/plottr_electron.git",
"homepage": "plottr.com",
Expand Down
8 changes: 7 additions & 1 deletion src/dashboard/components/account/ChoiceView.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ export default function ChoiceView(props) {
<p>{t('Access to all the features')}</p>
<p>{t('Create unlimited project files')}</p>
<div style={{ marginTop: '30px' }}>
<Button bsSize="large" bsStyle="default" onClick={startTrial}>
<Button
bsSize="large"
bsStyle="default"
onClick={() => {
startTrial()
}}
>
{t('Start my Free Trial')}
</Button>
<Button bsStyle="link" onClick={() => setView('chooser')}>
Expand Down

0 comments on commit 7510e35

Please sign in to comment.