revert(apis): supprimer le cast repo.save inutile

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
This commit is contained in:
z3n
2026-06-24 09:14:42 +00:00
parent 2e9191e6a2
commit 403850f21d

View File

@@ -51,7 +51,7 @@ export class ApisService {
contactTechnicalEntity: dto.contactTechnicalEntity,
contactTechnicalEmail: dto.contactTechnicalEmail,
});
const saved = await this.repo.save(entity) as ApiEntryEntity;
const saved = await this.repo.save(entity);
return toApiEntry(saved);
}