@nb1990 I did it, following yout instructions, thats right
the problema was in my home.ts look:
getData() {
this.service.getCauses()
.subscribe(
data => this.causes = data,
err => console.log(err)
);
}
when in fact it was for me to do
getData() {
this.service.getCauses()
.subscribe(
data => this.causes = data.causas, /// data.causes is object its wrong
err => console.log(err)
);
}
thanks friend, now I trying guard user in variable and work in edit profile, step 2... I'll come back