From 005da43738cd27bbb6b01aa00e69939db9f35ce0 Mon Sep 17 00:00:00 2001 From: nmemmert Date: Wed, 26 Aug 2026 08:47:25 -0400 Subject: [PATCH] Default book button label to 'Learn More' when using url instead of amazonUrl; v1.1.38 Co-Authored-By: Claude Sonnet 4.6 --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 3ed024f..014b7e4 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1789,7 +1789,7 @@ function BooksSectionSection({ content }: { content: SiteContent }) { {book.description &&

{book.description}

} {(book.amazonUrl || book.url) && ( - {book.amazonLabel || 'View on Amazon'} + {book.amazonUrl ? (book.amazonLabel || 'View on Amazon') : (book.amazonLabel || 'Learn More')} )}