npm run build durch gelaufen

This commit is contained in:
Timo Knuth
2026-02-28 11:56:31 +01:00
parent aec4b93439
commit 02bb2ed994
6 changed files with 18 additions and 24 deletions

View File

@@ -12,8 +12,8 @@ export default async function LandingPagesOverview({
const organizations = await prisma.organization.findMany({
where: q ? {
OR: [
{ name: { contains: q, mode: 'insensitive' } },
{ slug: { contains: q, mode: 'insensitive' } },
{ name: { contains: q } },
{ slug: { contains: q } },
]
} : {},
orderBy: { name: 'asc' },