Возможно, вы могли бы использовать условную логику, подобную этой, для визуализации либо изображения для result.volumeInfo.imageLinks.thumbnail
, либо какого-либо другого запасного изображения, если result.volumeInfo.imageLinks.thumbnail
не определено?
Итак, что-то вроде следующего:
<Card key={result.id}
hoverable
style={{ width:240 }}
cover={ () => {
const cardImage = result.volumeInfo.imageLinks.thumbnail
// If result.volumeInfo.imageLinks.thumbnail is defined, render
// image with it, otherwise rendering some other fallback image
return (cardImage ?
<img alt="example" src={ cardImage } /> :
<img alt="example" src="/some-empty-image.jpg" />)
}} >
<Meta title={result.volumeInfo.title} />
</Card>