aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 1777e90..4e6779a 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -13,7 +13,8 @@ import Header from './components/Header/Header';
import ProfilePage from './pages/ProfilePage/ProfilePage';
import FeedPage from './pages/FeedPage/FeedPage';
import AuthPage from './pages/AuthPage/AuthPage';
-import { User, Page } from './types';
+import { Page } from './types';
+import { User } from 'which-types';
import { get, post } from './requests';
import ScrollTopArrow from './components/ScrollTopArrow/ScrollTopArrow';
@@ -53,10 +54,10 @@ const App: React.FC = () => {
}
};
- const logIn = (name: string, password: string): Promise<boolean> => {
+ const logIn = (username: string, password: string): Promise<boolean> => {
return post('/authentication', {
strategy: 'local',
- name,
+ username,
password
}).then(response => {
const me = response.data.user;