module import fixes

This commit is contained in:
Violet Caulfield
2025-01-20 10:08:57 -06:00
parent cd58ff7a79
commit 44cd8859be
36 changed files with 75 additions and 77 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
import { useUserPlaylists } from "@/api/queries/playlist";
import { ItemCard } from "@/components/Global/helpers/item-card";
import { H2 } from "@/components/Global/helpers/text";
import { ProvidedHomeProps } from "@/components/types";
import { useUserPlaylists } from "../../../api/queries/playlist";
import { ItemCard } from "../../../components/Global/helpers/item-card";
import { H2 } from "../../../components/Global/helpers/text";
import { ProvidedHomeProps } from "../../../components/types";
import React from "react";
import { FlatList } from "react-native";
import { View } from "tamagui";
+3 -3
View File
@@ -1,4 +1,4 @@
import { ProvidedHomeProps } from "@/components/types";
import { ProvidedHomeProps } from "../../../components/types";
import { ScrollView, RefreshControl } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
import { YStack, XStack, Separator } from "tamagui";
@@ -6,8 +6,8 @@ import Playlists from "../helpers/playlists";
import RecentArtists from "../helpers/recent-artists";
import RecentlyPlayed from "../helpers/recently-played";
import { useHomeContext } from "../provider";
import { H3 } from "@/components/Global/helpers/text";
import Avatar from "@/components/Global/helpers/avatar";
import { H3 } from "../../../components/Global/helpers/text";
import Avatar from "../../../components/Global/helpers/avatar";
import Client from "../../../api/client";
export function ProvidedHome({ route, navigation }: ProvidedHomeProps): React.JSX.Element {