Skip to content

Commit

Permalink
Fix free trial not allowing refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
ajayyy committed Mar 16, 2024
1 parent 7e4b6ce commit bfbdaf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/help/PaymentComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const PaymentComponent = () => {
}, false)}`);

const applyChoices = async (choices: PaymentComponentChoices) => {
if (Config.config!.freeTrialStart && !Config.config!.freeTrialEnded) {
if (freeTrialActive()) {
// Can't have two trials at once
choices.freeTrial = false;
}
Expand Down

0 comments on commit bfbdaf6

Please sign in to comment.