Skip to content

Commit

Permalink
chore: yarn format
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Oct 10, 2023
1 parent 2529aab commit b09f00f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions framework/core/js/src/admin/components/MailPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,6 @@ export default class MailPage<CustomAttrs extends IPageAttrs = IPageAttrs> exten
</Form>
</>
);

return items;
}

mailSettingItems(): ItemList<Mithril.Children> {
Expand All @@ -98,10 +96,7 @@ export default class MailPage<CustomAttrs extends IPageAttrs = IPageAttrs> exten
const fields = this.driverFields![this.setting('mail_driver')()];
const fieldKeys = Object.keys(fields);

items.add(
'status',
this.status!.sending || <Alert dismissible={false}>{app.translator.trans('core.admin.email.not_sending_message')}</Alert>
);
items.add('status', this.status!.sending || <Alert dismissible={false}>{app.translator.trans('core.admin.email.not_sending_message')}</Alert>);

items.add(
'mail_from',
Expand Down

0 comments on commit b09f00f

Please sign in to comment.