eslint: use semicolon TypeScript delimeter
This commit is contained in:
@@ -13,7 +13,7 @@ const messages = defineMessages({
|
||||
});
|
||||
|
||||
interface IAccount {
|
||||
accountId: string
|
||||
accountId: string;
|
||||
}
|
||||
|
||||
const Account: React.FC<IAccount> = ({ accountId }) => {
|
||||
|
||||
@@ -18,8 +18,8 @@ const messages = defineMessages({
|
||||
});
|
||||
|
||||
interface IListEditor {
|
||||
listId: string
|
||||
onClose: (type: string) => void
|
||||
listId: string;
|
||||
onClose: (type: string) => void;
|
||||
}
|
||||
|
||||
const ListEditor: React.FC<IListEditor> = ({ listId, onClose }) => {
|
||||
|
||||
Reference in New Issue
Block a user