fix: linter

This commit is contained in:
Lei Nelissen
2025-05-24 00:34:44 +02:00
parent 76f3ce3972
commit 2e3ced0680
3 changed files with 4 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ const SectionHeading = React.memo(function SectionHeading(props: { label: string
interface GeneratedArtistItemProps {
item: SectionArtistItem;
imageURL: string;
imageURL: string | undefined;
onPress: (payload: SectionArtistItem) => void;
}