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; ---