Skip to content

Commit 524a631

Browse files
committed
chore: Allow negative indices again
1 parent 201a597 commit 524a631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/nuqs/src/parsers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export const parseAsInteger = createParser({
158158
export const parseAsIndex = createParser({
159159
parse: v => {
160160
const int = parseAsInteger.parse(v)
161-
if (int === null || int <= 0) {
161+
if (int === null) {
162162
return null
163163
}
164164
return int - 1

0 commit comments

Comments
 (0)