Skip to content

Commit

Permalink
chore(ngxs-demo): fix "Person State" demo (#1528)
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimio authored Oct 23, 2024
1 parent 52965e0 commit 845f53c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion apps/ngxs-demo/src/person/person.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class PersonService {

public fetchAll(): Observable<PersonModel> {
return this.httpService
.get<{data: PersonModel}>('./app/json/person.json')
.get<{data: PersonModel}>('./assets/person.json')
.pipe(map((response: {data: PersonModel}): PersonModel => response.data));
}
}

0 comments on commit 845f53c

Please sign in to comment.