File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
web/src/modules/auth/components/client Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
'use client' ;
2
2
import { faExclamationCircle } from '@fortawesome/free-solid-svg-icons' ;
3
3
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' ;
4
- import axios from 'axios' ;
5
4
import Link from 'next/link' ;
6
5
import { FC , useState } from 'react' ;
7
6
import { useForm } from 'react-hook-form' ;
8
7
import { toast } from 'react-hot-toast' ;
9
8
10
- import { ErrorBalloon } from '@web/src/modules/shared/components/client/ErrorBalloon' ;
11
-
9
+ import ClientAxios from '@web/src/lib/axios/ClientAxios' ;
12
10
import {
13
11
Input ,
14
12
SubmitButton ,
15
13
} from '../../../shared/components/client/FormElements' ;
16
- import ClientAxios from '@web/src/lib/axios/ClientAxios' ;
17
14
18
15
type LoginFormData = {
19
16
email : string ;
You can’t perform that action at this time.
0 commit comments