aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/User.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/pages/User.tsx')
-rw-r--r--frontend/src/pages/User.tsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/frontend/src/pages/User.tsx b/frontend/src/pages/User.tsx
index ad230bd..f90d1aa 100644
--- a/frontend/src/pages/User.tsx
+++ b/frontend/src/pages/User.tsx
@@ -1,14 +1,14 @@
1import React from 'react'; 1import React from 'react';
2import { Link, useLocation, useNavigate } from 'react-router-dom'; 2import { Link, useLocation, useNavigate } from 'react-router-dom';
3 3
4import { SteamIcon, TwitchIcon, YouTubeIcon, PortalIcon, FlagIcon, StatisticsIcon, SortIcon, ThreedotIcon, DownloadIcon, HistoryIcon } from '../images/Images'; 4import { SteamIcon, TwitchIcon, YouTubeIcon, PortalIcon, FlagIcon, StatisticsIcon, SortIcon, ThreedotIcon, DownloadIcon, HistoryIcon } from '@images/Images';
5import { UserProfile } from '../types/Profile'; 5import { UserProfile } from '@customTypes/Profile';
6import { Game, GameChapters } from '../types/Game'; 6import { Game, GameChapters } from '@customTypes/Game';
7import { Map } from '../types/Map'; 7import { Map } from '@customTypes/Map';
8import { API } from '../api/Api'; 8import { API } from '@api/Api';
9import { ticks_to_time } from '../utils/Time'; 9import { ticks_to_time } from '@utils/Time';
10import "../css/Profile.css"; 10import "@css/Profile.css";
11import useMessage from '../hooks/UseMessage'; 11import useMessage from '@hooks/UseMessage';
12 12
13interface UserProps { 13interface UserProps {
14 profile?: UserProfile; 14 profile?: UserProfile;