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

@ -14,8 +14,8 @@ const messages = defineMessages({
});
interface IEnableOtpForm {
displayOtpForm: boolean
handleSetupProceedClick: (event: React.MouseEvent) => void
displayOtpForm: boolean;
handleSetupProceedClick: (event: React.MouseEvent) => void;
}
const EnableOtpForm: React.FC<IEnableOtpForm> = ({ displayOtpForm, handleSetupProceedClick }) => {

View File

@ -26,7 +26,7 @@ const OtpConfirmForm: React.FC = () => {
const history = useHistory();
const dispatch = useAppDispatch();
const [state, setState] = useState<{ password: string, isLoading: boolean, code: string, qrCodeURI: string, confirmKey: string }>({
const [state, setState] = useState<{ password: string; isLoading: boolean; code: string; qrCodeURI: string; confirmKey: string }>({
password: '',
isLoading: false,
code: '',