aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/user/Login.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-06-04 00:18:50 +0800
committercrupest <crupest@outlook.com>2020-06-04 00:18:50 +0800
commit3aa87cc26fd58836b82c067b58a47e08e30a7784 (patch)
treeba9cf1918d210896ab10bed484a8ddf7c7935e0c /Timeline/ClientApp/src/user/Login.tsx
parent1e90a93049cd57098608de72f02bfaabfadd32b6 (diff)
downloadtimeline-3aa87cc26fd58836b82c067b58a47e08e30a7784.tar.gz
timeline-3aa87cc26fd58836b82c067b58a47e08e30a7784.tar.bz2
timeline-3aa87cc26fd58836b82c067b58a47e08e30a7784.zip
refactor(front): Make codes lint-clean!
Diffstat (limited to 'Timeline/ClientApp/src/user/Login.tsx')
-rw-r--r--Timeline/ClientApp/src/user/Login.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Timeline/ClientApp/src/user/Login.tsx b/Timeline/ClientApp/src/user/Login.tsx
index fc9364c0..24cd58d0 100644
--- a/Timeline/ClientApp/src/user/Login.tsx
+++ b/Timeline/ClientApp/src/user/Login.tsx
@@ -1,6 +1,7 @@
import React, { Fragment, useState, useEffect } from 'react';
import { useHistory } from 'react-router';
import { useTranslation } from 'react-i18next';
+import { AxiosError } from 'axios';
import AppBar from '../common/AppBar';
@@ -68,7 +69,7 @@ const Login: React.FC = (_) => {
history.goBack();
}
},
- (e) => {
+ (e: AxiosError | Error) => {
setProcess(false);
setError(e.message);
}