diff --git a/docs/en/Tutorials/Part-1.md b/docs/en/Tutorials/Part-1.md index 8d9d42875f..7a70c2adf8 100644 --- a/docs/en/Tutorials/Part-1.md +++ b/docs/en/Tutorials/Part-1.md @@ -970,6 +970,7 @@ export class BooksState { } ``` * We added the book property to BooksStateModel model. +* We added `@Injectable()` decorator to BookState class (Regquired for Ivy to work properly). * We added the `GetBooks` action that retrieves the books data via `BooksService` that generated via ABP CLI and patches the state. * `NGXS` requires to return the observable without subscribing it in the get function.