Bug Fixes

This commit is contained in:
headlesdev
2025-05-24 21:15:52 +02:00
parent fe6586d051
commit d095524291
11 changed files with 46 additions and 30 deletions

View File

@@ -16,7 +16,7 @@ export async function POST(request: NextRequest) {
try {
const network = await prisma.network.update({
where: {
id: Number(body.id),
id: body.id,
},
data: {
name: body.name,