Skip to content

Commit

Permalink
refactor: useQuery for Marketplace Lists (#29348)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo authored and hugocostadev committed May 30, 2023
1 parent 5ffac67 commit 2d4e32d
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 462 deletions.
2 changes: 1 addition & 1 deletion apps/meteor/client/lib/asyncState/AsyncState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ export type AsyncState<T> =
| { phase: AsyncStatePhase.LOADING; value: undefined; error: undefined }
| { phase: AsyncStatePhase.LOADING; value: T; error: undefined }
| { phase: AsyncStatePhase.LOADING; value: undefined; error: Error }
| { phase: AsyncStatePhase.RESOLVED; value: T; error: undefined }
| { phase: AsyncStatePhase.RESOLVED; value: T; error?: undefined }
| { phase: AsyncStatePhase.UPDATING; value: T; error: undefined }
| { phase: AsyncStatePhase.REJECTED; value: undefined; error: Error };
Loading

0 comments on commit 2d4e32d

Please sign in to comment.