Skip to content

Commit

Permalink
fix: typo useQuerie -> useQueries (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
andipaetzold committed Nov 5, 2023
1 parent a9497a8 commit 9a52945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/firestore/useQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export interface UseQueriesOptions {
* - loading: `true` while fetching the query; `false` if the query was fetched successfully or an error occurred
* - error: `undefined` if no error occurred
*/
export function useQuerie<
export function useQueries<
AppModelTypes extends ReadonlyArray<unknown> = ReadonlyArray<DocumentData>,
DbModelTypes extends ReadonlyArray<DocumentData> = ReadonlyArray<DocumentData>,
>(
Expand Down

0 comments on commit 9a52945

Please sign in to comment.