Skip to content

Commit

Permalink
fix: type error
Browse files Browse the repository at this point in the history
  • Loading branch information
drakang4 committed Feb 11, 2025
1 parent 5e9c155 commit 03161b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/router/src/href-to-props/use-href-to-props.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function removeTripleDomain({
* @param value query 파라미터로 들어있던 값
*/
function stringifyParsedQuery(
value: string | string[] | ParsedQs | ParsedQs[] | undefined,
value: string | ParsedQs | (string | ParsedQs)[] | undefined,
): string | undefined {
if (Array.isArray(value)) {
return stringifyParsedQuery(value)
Expand Down

0 comments on commit 03161b5

Please sign in to comment.