fix: Fix fraud.service.ts return type
This commit is contained in:
parent
36d6fa4ae0
commit
d435bbe057
1 changed files with 1 additions and 1 deletions
|
|
@ -148,6 +148,6 @@ export class FraudService {
|
||||||
async confirmAlert(alertId: string, data: { action: string; notes: string }): Promise<{ status: string }> {
|
async confirmAlert(alertId: string, data: { action: string; notes: string }): Promise<{ status: string }> {
|
||||||
// In production, this would update the company status and log the action
|
// In production, this would update the company status and log the action
|
||||||
console.log(`Confirming alert ${alertId}: action=${data.action}, notes=${data.notes}`);
|
console.log(`Confirming alert ${alertId}: action=${data.action}, notes=${data.notes}`);
|
||||||
return { status: 'confirmed', action: data.action };
|
return { status: 'confirmed' };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue