Bugfixed the Estimate Modal.

This commit is contained in:
rocketdebris 2025-11-07 14:11:52 -05:00
parent 918549a603
commit 721b50d058
2 changed files with 6 additions and 2 deletions

View file

@ -396,6 +396,7 @@ class Api {
static async getCompanyNames() {
const companies = await this.getDocsList("Company", ["name"]);
const companyNames = companies.map((company) => company.name);
console.log("DEBUG: API - Fetched Company Names: ", companyNames);
return companyNames;
}