Remove comments

This commit is contained in:
2026-03-06 13:41:09 +08:00
parent e125321cae
commit 52f2d702d4
4 changed files with 46 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ export class LeadsService {
private readonly PYTHON_API = 'http://localhost:8000';
async getAllLeads() {
const response = await axios.get(`${this.PYTHON_API}/leads`);
const response = await axios.get(`${this.PYTHON_API}/leads/ibm`);
return response.data;
}