Skip to content

Commit 602de52

Browse files
committed
fix imports
1 parent 5213638 commit 602de52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/Events/LoadingScreen/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import React, { useEffect, useState } from 'react';
22
import { useParams, useLocation, useNavigate } from 'react-router-dom';
3-
import axiosInstance from '../../api';
43
import { useQuery } from 'react-query';
5-
import { toastError, toastSuccess } from '../../utils/toast';
6-
import { Profile } from '../../types/profile';
74
import { Heading, Box, VStack, Progress, Link } from '@chakra-ui/react';
5+
import { Profile } from '../../../types/profile';
6+
import { toastError, toastSuccess } from '../../../utils/toast';
7+
import axiosInstance from '../../../api';
88

99
const LoadingScreen = (): JSX.Element => {
1010
const [state, setState] = useState('auth');

0 commit comments

Comments
 (0)