From 645e9a6670d634dd5be9c282bbd4f8330b2248c2 Mon Sep 17 00:00:00 2001 From: Christomatt Date: Thu, 29 Jan 2026 01:03:03 +0100 Subject: [PATCH] fixed build error --- src/app/api/users/[handle]/followers/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/api/users/[handle]/followers/route.ts b/src/app/api/users/[handle]/followers/route.ts index d35fc80..f4f9996 100644 --- a/src/app/api/users/[handle]/followers/route.ts +++ b/src/app/api/users/[handle]/followers/route.ts @@ -1,3 +1,4 @@ +import { NextResponse } from 'next/server'; import { db, follows, users, remoteFollowers } from '@/db'; import { eq } from 'drizzle-orm'; import { hydrateSwarmUsers } from '@/lib/swarm/user-hydration';