fix: Fix fraud.service.ts return type

This commit is contained in:
Tiago Yamamoto 2025-12-27 10:09:18 -03:00
parent 36d6fa4ae0
commit d435bbe057

View file

@ -148,6 +148,6 @@ export class FraudService {
async confirmAlert(alertId: string, data: { action: string; notes: string }): Promise<{ status: string }> {
// In production, this would update the company status and log the action
console.log(`Confirming alert ${alertId}: action=${data.action}, notes=${data.notes}`);
return { status: 'confirmed', action: data.action };
return { status: 'confirmed' };
}
}