Skip to content

Commit

Permalink
fixes goodread button link not opening in new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
love-sonkar authored and hackerkid committed Oct 1, 2023
1 parent 56ef6ee commit 07f1f66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/components/bookcard.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const BookCard = ({ book }) => {
{book.amazon_url ? <AmazonURL book={book} /> : null}
</div>
<div style={{ width: '30px', height: '30px' }}>
<a href={book.url}>
<a href={book.url} target="_blank">
<GoodReadsImage />
</a>
</div>
Expand Down

0 comments on commit 07f1f66

Please sign in to comment.