Skip to content

Commit

Permalink
fix the subscription when plan has expired
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaraLpresta committed Sep 13, 2024
1 parent 34281d4 commit 76161a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<b-button
class="mx-1 mt-3 mt-md-0 mr-md-1 text-nowrap ml-auto"
variant="outline-primary"
@click="$emit('startSubscription')"
@click="$emit('startSubscription', isSubscriptionRunning ? 'subscription_reactivation' : 'subscription_funnel')"

Check failure on line 34 in _dev/src/components/configuration/alert-subscription-cancelled.vue

View workflow job for this annotation

GitHub Actions / JS linter

This line has a length of 122. Maximum allowed is 100
>
{{ $t('cta.resubscribe') }}
</b-button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
/>
<alert-subscribe-to-continue
v-else-if="!billingRunning && !billingSubscription && facebookOnboarded"
@startSubscription="handleStartSubscription('subscription_funnel')"
@startSubscription="handleStartSubscription('subscription_reactivation')"
/>
<alert-subscription-cancelled
v-else-if="billingSubscription && billingSubscription.cancelled_at"
:subscription="billingSubscription"
@startSubscription="handleStartSubscription('subscription_reactivation')"
@startSubscription="(event) => handleStartSubscription(event)"
/>
<modal-module-upgrade-for-billing
v-if="!billingContext && facebookOnboarded"
Expand Down

0 comments on commit 76161a4

Please sign in to comment.