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

@ -8,11 +8,11 @@ import type { AppDispatch, RootState } from 'soapbox/store';
interface ICSVImporter {
messages: {
input_label: MessageDescriptor
input_hint: MessageDescriptor
submit: MessageDescriptor
}
action: (params: FormData) => (dispatch: AppDispatch, getState: () => RootState) => Promise<void>
input_label: MessageDescriptor;
input_hint: MessageDescriptor;
submit: MessageDescriptor;
};
action: (params: FormData) => (dispatch: AppDispatch, getState: () => RootState) => Promise<void>;
}
const CSVImporter: React.FC<ICSVImporter> = ({ messages, action }) => {