You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A method defined within the withCalls could be private, meaning that it's only called in the store. But the signals and computed should still be available.
Example
withCalls((store,dataService=inject(WebCoreDataAccessService))=>({_loadQuoteRequest: typedCallConfig({call: (id)=>dataService.getShipperFtlQuoteRequest({ id }).pipe(map((r)=>r.data.quoteRequest)),mapPipe: 'switchMap',resultProp: 'quoteRequest',}),})),
Currently method _loadQuoteRequest is not exported but the signals/computed are wrongly named.
The text was updated successfully, but these errors were encountered:
A method defined within the withCalls could be private, meaning that it's only called in the store. But the signals and computed should still be available.
Example
Currently method _loadQuoteRequest is not exported but the signals/computed are wrongly named.
The text was updated successfully, but these errors were encountered: