Skip to content

Commit

Permalink
Merge pull request #174 from pangeachat/paywall-fix
Browse files Browse the repository at this point in the history
don't should no info necessary message if user is not in trial period
  • Loading branch information
ggurdin authored May 7, 2024
2 parents 8bf5cab + 5974334 commit 1a14adf
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions lib/pangea/widgets/igc/paywall_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@ class PaywallCard extends StatelessWidget {
style: BotStyle.text(context),
textAlign: TextAlign.center,
),
Text(
L10n.of(context)!.noPaymentInfo,
style: BotStyle.text(context),
textAlign: TextAlign.center,
),
if (inTrialWindow)
Text(
L10n.of(context)!.noPaymentInfo,
style: BotStyle.text(context),
textAlign: TextAlign.center,
),
const SizedBox(height: 15.0),
SizedBox(
width: double.infinity,
Expand Down

0 comments on commit 1a14adf

Please sign in to comment.