refactor: clean up imports and improve error message formatting in ChatWindow

- Commented out unused imports in ChatWindow for better clarity.
- Reformatted error messages in the iniciarChamada function for improved readability.
- Ensured consistent spacing and formatting throughout the ChatWindow component.
This commit is contained in:
2025-11-21 19:59:04 -03:00
parent a0fcb1571c
commit 21783de25f
2 changed files with 16 additions and 15 deletions

View File

@@ -30,8 +30,8 @@ import type * as cursos from "../cursos.js";
import type * as dashboard from "../dashboard.js";
import type * as documentos from "../documentos.js";
import type * as email from "../email.js";
import type * as enderecosMarcacao from "../enderecosMarcacao.js";
import type * as empresas from "../empresas.js";
import type * as enderecosMarcacao from "../enderecosMarcacao.js";
import type * as ferias from "../ferias.js";
import type * as funcionarioEnderecos from "../funcionarioEnderecos.js";
import type * as funcionarios from "../funcionarios.js";
@@ -86,8 +86,8 @@ declare const fullApi: ApiFromModules<{
dashboard: typeof dashboard;
documentos: typeof documentos;
email: typeof email;
enderecosMarcacao: typeof enderecosMarcacao;
empresas: typeof empresas;
enderecosMarcacao: typeof enderecosMarcacao;
ferias: typeof ferias;
funcionarioEnderecos: typeof funcionarioEnderecos;
funcionarios: typeof funcionarios;