Skip to content

Commit 225d26b

Browse files
committed
Fix extra param
1 parent 6baeeb3 commit 225d26b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layouts/LibrariesLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type LibraryEntry = CollectionEntry<"libraries">;
2020
const currentLocale = getCurrentLocale(Astro.url.pathname);
2121
const t = await getUiTranslator(currentLocale);
2222
23-
const { entries, page, full } = Astro.props;
23+
const { entries, full } = Astro.props;
2424
2525
function strCompare(a: string, b: string) {
2626
if (a < b) {

0 commit comments

Comments
 (0)