eslint: use semicolon TypeScript delimeter
This commit is contained in:
@ -12,7 +12,7 @@ const messages = defineMessages({
|
||||
});
|
||||
|
||||
interface IList {
|
||||
listId: string
|
||||
listId: string;
|
||||
}
|
||||
|
||||
const List: React.FC<IList> = ({ listId }) => {
|
||||
|
||||
@ -31,8 +31,8 @@ const getOrderedLists = createSelector([(state: RootState) => state.lists], list
|
||||
});
|
||||
|
||||
interface IListAdder {
|
||||
accountId: string
|
||||
onClose: (type: string) => void
|
||||
accountId: string;
|
||||
onClose: (type: string) => void;
|
||||
}
|
||||
|
||||
const ListAdder: React.FC<IListAdder> = ({ accountId, onClose }) => {
|
||||
|
||||
Reference in New Issue
Block a user