fixes goodread button link not opening in new tab

This commit is contained in:
Love sonkar
2023-10-01 08:57:35 +05:30
committed by Vishnu Ks
parent 56ef6eecd0
commit 07f1f66360

View File

@@ -56,7 +56,7 @@ const BookCard = ({ book }) => {
{book.amazon_url ? <AmazonURL book={book} /> : null} {book.amazon_url ? <AmazonURL book={book} /> : null}
</div> </div>
<div style={{ width: '30px', height: '30px' }}> <div style={{ width: '30px', height: '30px' }}>
<a href={book.url}> <a href={book.url} target="_blank">
<GoodReadsImage /> <GoodReadsImage />
</a> </a>
</div> </div>