Skip to content

Commit e2c8b88

Browse files
authored
chore: fix old relative imports (#139)
1 parent 66d8848 commit e2c8b88

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/app/Schedule/SchedulePage.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ import {
1313
} from 'react-native';
1414
import Icon from 'react-native-vector-icons/Ionicons';
1515
import LinearGradient from 'react-native-linear-gradient';
16-
import { debugLog, debugError } from '../../utils/Debug';
16+
import { debugLog, debugError } from '@utils/Debug';
1717
import { RefreshControl } from 'react-native';
1818
import { NavigationProp, useNavigation } from '@react-navigation/native';
1919
import { useHeaderHeight } from '@react-navigation/elements';
20-
import { ScheduleShow, ScheduleResponse } from '../../types/Schedule';
21-
import { ScheduleService } from '../../services/ScheduleService';
22-
import { RecentlyPlayedService } from '../../services/RecentlyPlayedService';
23-
import { WmbrRouteName } from '../../types/Navigation';
24-
import { COLORS, CORE_COLORS } from '../../utils/Colors';
20+
import { ScheduleShow, ScheduleResponse } from '@customTypes/Schedule';
21+
import { ScheduleService } from '@services/ScheduleService';
22+
import { RecentlyPlayedService } from '@services/RecentlyPlayedService';
23+
import { WmbrRouteName } from '@customTypes/Navigation';
24+
import { COLORS, CORE_COLORS } from '@utils/Colors';
2525

2626
interface SchedulePageProps {
2727
currentShow?: string;

0 commit comments

Comments
 (0)