Ignore:
Timestamp:
01/27/26 15:53:51 (6 months ago)
Author:
Dimitar Arsov <dimitararsov04@…>
Branches:
main
Children:
c1d2f07
Parents:
4e5cf92
Message:

fix types path

Location:
frontend/src/components/userProfile
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/components/userProfile/ArtistView.tsx

    r4e5cf92 r77e572b  
    11import { useNavigate } from "react-router-dom";
    2 import { Music, Disc3, Mic2 } from "lucide-react";
    3 import type { ArtistContributionDTO } from "../../types";
     2import { Music, Disc3 } from "lucide-react";
     3import type { ArtistContributionDTO } from "../../utils/types";
    44
    55interface ArtistViewProps {
  • frontend/src/components/userProfile/ListenerView.tsx

    r4e5cf92 r77e572b  
    11import { useNavigate } from "react-router-dom";
    22import { Heart, ListMusic, Music, Album } from "lucide-react";
    3 
    4 interface MusicalEntityDTO {
    5   id: number;
    6   title: string;
    7   genre: string;
    8   type: string;
    9 }
    10 
    11 interface Playlist {
    12   id: number;
    13   name: string;
    14   cover: string;
    15   creatorName: string;
    16 }
     3import type { Playlist, MusicalEntityDTO } from "../../utils/types";
    174
    185interface ListenerViewProps {
Note: See TracChangeset for help on using the changeset viewer.