File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const theme = createTheme();
16
16
17
17
export default function Login ( ) {
18
18
const [ open , setOpen ] = React . useState ( false ) ;
19
- const [ errorMessage , setErrorMessage ] = React . useState ( "" ) ;
19
+ const [ errorMessage , setErrorMessage ] = React . useState ( '' ) ;
20
20
const handleClose = (
21
21
event ?: React . SyntheticEvent | Event ,
22
22
reason ?: string ,
Original file line number Diff line number Diff line change @@ -2,4 +2,7 @@ import createClient from 'openapi-fetch';
2
2
import type { paths } from '../types/api' ;
3
3
import { API_URL } from './config' ;
4
4
5
- export const apiClient = createClient < paths > ( { baseUrl : API_URL , credentials : 'include' } ) ;
5
+ export const apiClient = createClient < paths > ( {
6
+ baseUrl : API_URL ,
7
+ credentials : 'include' ,
8
+ } ) ;
You can’t perform that action at this time.
0 commit comments