In the definition of `app/home/home-view-model.ts` in the [Home UI](https://docs.nativescript.org/tutorial/plain.html#create-the-home-page) section there is an error in the `populateFlicks` function. It is defined as ``` populateFlicks(): void { this._flicks = FlickService().getInstance().getFlicks(); } ``` but should be ``` populateFlicks(): void { this._flicks = FlickService.getInstance().getFlicks(); } ``` That is, FlickService should not be called.