diff --git a/src/components/workspace/settings/BillingOverview.vue b/src/components/workspace/settings/BillingOverview.vue
index 4ce195b1..2aa5ecc3 100644
--- a/src/components/workspace/settings/BillingOverview.vue
+++ b/src/components/workspace/settings/BillingOverview.vue
@@ -39,7 +39,6 @@
{{ plan.name || 'Free' }}
@@ -102,8 +101,8 @@
{
- this.$store.dispatch(SET_MODAL_DIALOG, {
- component: 'ChooseTariffPlanPopup',
- data: {
- workspaceId: this.workspace.id,
- },
- });
- },
- },
- /**
- * `Increment Event Limit` secondary button
- */
- incrementEventsLimitSecondary: {
- label: this.$i18n.t('billing.buttons.incrementEventsLimit') as string,
- style: 'secondary',
onClick: () => {
this.$store.dispatch(SET_MODAL_DIALOG, {
component: 'ChooseTariffPlanPopup',
@@ -195,7 +178,6 @@ export default Vue.extend({
*/
enableAutoPayment: {
label: this.$i18n.t('billing.buttons.enableAutoPayment') as string,
- style: 'primary',
onClick: () => {
this.$store.dispatch(SET_MODAL_DIALOG, {
component: 'PaymentDetailsDialog',
@@ -212,7 +194,6 @@ export default Vue.extend({
*/
prolongateCurrentPlan: {
label: this.$i18n.t('billing.buttons.prolongateCurrentPlan') as string,
- style: 'secondary',
onClick: () => {
this.$store.dispatch(SET_MODAL_DIALOG, {
component: 'PaymentDetailsDialog',
@@ -249,12 +230,11 @@ export default Vue.extend({
/**
* `Increment Event Limit from` button
*/
- incrementEventsLimitWithPrice(): Button {
+ incrementEventsLimitWithPrice(): Omit