chore: refactor podcast dto to hold different image sizes

This commit is contained in:
2024-04-18 22:54:20 +02:00
parent 21925d101e
commit 9370066464
2 changed files with 18 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ export function Home() {
key={podcast.id}
title={podcast.title}
author={podcast.author}
imageUrl={podcast.imageUrl}
imageUrl={podcast.images.large}
/>
))}
</div>