Skip to content

Commit 845f53c

Browse files
authored
chore(ngxs-demo): fix "Person State" demo (#1528)
1 parent 52965e0 commit 845f53c

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
File renamed without changes.

apps/ngxs-demo/src/person/person.service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class PersonService {
1111

1212
public fetchAll(): Observable<PersonModel> {
1313
return this.httpService
14-
.get<{data: PersonModel}>('./app/json/person.json')
14+
.get<{data: PersonModel}>('./assets/person.json')
1515
.pipe(map((response: {data: PersonModel}): PersonModel => response.data));
1616
}
1717
}

0 commit comments

Comments
 (0)