eslint: use semicolon TypeScript delimeter
This commit is contained in:
@ -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 }) => {
|
||||
|
||||
@ -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: '',
|
||||
|
||||
Reference in New Issue
Block a user