Skip to content

Commit

Permalink
fix default response type
Browse files Browse the repository at this point in the history
  • Loading branch information
alijany committed Jun 24, 2024
1 parent 8ded479 commit 35cebf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.7.5",
"version": "0.7.6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/lazyQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function createLazyHook<
data: options.defaultValue ?? null
}
},
} as LazyResponse<Res>
} as LazyResponse<ResType>
}

const compiledUrl = replaceUrlParam(url, options.pathParams ?? {});
Expand Down

0 comments on commit 35cebf8

Please sign in to comment.