Aman-Mittal commented on code in PR #70:
URL:
https://github.com/apache/fineract-backoffice-ui/pull/70#discussion_r3335687021
##########
src/app/features/clients/client-form.component.ts:
##########
@@ -325,23 +402,41 @@ export class ClientFormComponent implements OnInit {
loadClientData() {
if (!this.clientId) return;
- this.clientService.retrieveOne11(this.clientId).subscribe((clientData) => {
+ this.clientService.retrieveOne11(this.clientId).subscribe((data) => {
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
Review Comment:
Need to apply any as data is coming different from generated OpenApi spec,
Need to debug in swagger for this will remove this in next pr
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]