eslint: use semicolon TypeScript delimeter

This commit is contained in:
Alex Gleason
2023-10-02 13:54:02 -05:00
parent 702124fb79
commit 645ce60a5f
479 changed files with 1928 additions and 1938 deletions

View File

@@ -13,7 +13,7 @@ const messages = defineMessages({
});
interface IAccount {
accountId: string
accountId: string;
}
const Account: React.FC<IAccount> = ({ accountId }) => {

View File

@@ -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 }) => {