From 91582076575049969d7d11f38545cf3bf3d71fd7 Mon Sep 17 00:00:00 2001 From: Josh Bairstow Date: Tue, 2 Jun 2026 00:10:25 +1000 Subject: [PATCH] chore(blog): reorder PostRow props to group required before optional Code review nit: searchText (required) was appended after the optional deck/tag, breaking the required-then-optional convention used by the rest of the interface. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/components/molecules/PostRow.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/molecules/PostRow.astro b/src/components/molecules/PostRow.astro index c05c4cc..a7fec85 100644 --- a/src/components/molecules/PostRow.astro +++ b/src/components/molecules/PostRow.astro @@ -3,12 +3,12 @@ interface Props { date: string; title: string; href: string; + searchText: string; deck?: string; tag?: string; - searchText: string; } -const { date, title, href, deck, tag, searchText } = Astro.props; +const { date, title, href, searchText, deck, tag } = Astro.props; ---