Skip to content

Type 'Promise<any>' is not assignable to type 'LoaderFunction'. #9268

Closed Answered by arthtyagi
arthtyagi asked this question in Q&A
Discussion options

You must be logged in to vote

Fixed it by changing the return type to () => Promise<{} | null>.

export function userLoader(qc: QueryClient) {
  return async () => {
    const data = qc.getQueryData(userQuery().queryKey);
    if (data) return data;
    return qc.fetchQuery(userQuery());
  };
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by arthtyagi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant