chore: prettier everywhere

This commit is contained in:
Julien Froidefond
2025-10-09 13:40:03 +02:00
parent f8100ae3e9
commit d9cf9a2655
303 changed files with 15420 additions and 9391 deletions

View File

@@ -2,12 +2,12 @@ import { NextRequest, NextResponse } from 'next/server';
import { tasksService } from '@/services/task-management/tasks';
export async function GET(
request: NextRequest,
{ params }: { params: Promise<{ id: string }> }
request: NextRequest,
{ params }: { params: Promise<{ id: string }> }
) {
try {
const { id } = await params;
if (!id) {
return NextResponse.json(
{ error: 'ID de tâche requis' },