From c089594c7fc1756fa45547e67f3488f6fe3cb846 Mon Sep 17 00:00:00 2001 From: gibbyb Date: Tue, 23 Jul 2024 15:24:53 -0500 Subject: [PATCH] Formatting --- src/app/api/technicians/route.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/api/technicians/route.ts b/src/app/api/technicians/route.ts index 315d096..97179db 100644 --- a/src/app/api/technicians/route.ts +++ b/src/app/api/technicians/route.ts @@ -35,6 +35,9 @@ export const GET = async (request: Request) => { } } catch (error) { console.error('Error fetching employees:', error); - return NextResponse.json({ message: 'Internal server error' }, { status: 500 }); + return NextResponse.json( + { message: 'Internal server error' }, + { status: 500 } + ); } };