Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
merefield committed Nov 15, 2023
1 parent 8e2b117 commit f6ce0f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ export default class WizardSubscriptionBadge extends Component {
setTimeout(() => {
this.updateIcon = null;
}, 5000);
})
});
}
}
}
4 changes: 3 additions & 1 deletion assets/javascripts/discourse/services/subscription.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ export default class SubscriptionService extends Service {
}

async retrieveSubscriptionStatus() {
let result = await ajax("/admin/wizards/subscription").catch(popupAjaxError);
let result = await ajax("/admin/wizards/subscription").catch(
popupAjaxError
);

this.subscribed = result.subscribed;
this.subscriptionType = result.subscription_type;
Expand Down

0 comments on commit f6ce0f5

Please sign in to comment.