This commit is contained in:
nora 2021-10-25 08:59:20 +02:00
parent d578445e33
commit 2ac957d8d3

View file

@ -18,7 +18,9 @@ const ModalBand = ({ band, onClose }: Props) => {
<Modal.Header>{band.name}</Modal.Header>
<Modal.Body>
<img width="400" src={band.url_for_image_original} alt={band.name} />
<div>{getBioText(band, 10000)}</div>
{band.biographies.map((bio) => (
<div key={bio.lang}>{bio.description}</div>
))}
</Modal.Body>
</Modal>
</div>