diff --git a/front/components/V2/GoldenRatio.tsx b/front/components/V2/GoldenRatio.tsx
index 60c1913..bccf119 100644
--- a/front/components/V2/GoldenRatio.tsx
+++ b/front/components/V2/GoldenRatio.tsx
@@ -38,7 +38,7 @@ const GoldenRatio = (props: GoldenRatioProps) => {
>
}
+ header={}
>
diff --git a/front/components/V2/HomeMainSongCard.tsx b/front/components/V2/HomeMainSongCard.tsx
index 0f655fe..82ce1ad 100644
--- a/front/components/V2/HomeMainSongCard.tsx
+++ b/front/components/V2/HomeMainSongCard.tsx
@@ -6,6 +6,7 @@ type HomeMainSongCardProps = {
title: string;
artist: string;
fontSize: number;
+ numLinesHeader: number;
onPress: () => void;
};
@@ -66,7 +67,7 @@ const HomeMainSongCard = (props: HomeMainSongCardProps) => {
fontSize: props.fontSize,
fontWeight: 'bold',
}}
- numberOfLines={2}
+ numberOfLines={props.numLinesHeader}
selectable={false}
>
{props.title}
@@ -94,6 +95,7 @@ const HomeMainSongCard = (props: HomeMainSongCardProps) => {
HomeMainSongCard.defaultProps = {
onPress: () => {},
fontSize: 16,
+ numLinesHeader: 2,
};
export default HomeMainSongCard;