Angular - HTTP Client
Identify the error in this Angular HTTP request code:
const headers = new HttpHeaders();
headers.set('Content-Type', 'application/json');
this.http.post('/api/data', body, { headers }).subscribe();