diff --git a/src/pages/characters/index.astro b/src/pages/characters/index.astro index e1b829e..fe5b4b5 100644 --- a/src/pages/characters/index.astro +++ b/src/pages/characters/index.astro @@ -6,7 +6,7 @@ import Card from "../../components/Card.astro"; const characters = await pb .collection("characters") // @ts-ignore - .getFullList({ expand: ["icon"] }); + .getFullList({ expand: ["icon"], filter: `(hidden = false)` }); export const prerender = false; ---