Skip to content

Commit 9228a88

Browse files
authored
docs: remove redundant parentheses (#2694)
1 parent c76b224 commit 9228a88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/utilities/storage.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ import {
216216
import { z } from 'zod'
217217

218218
const myNumberSchema = z.number().int().nonnegative()
219-
const isMyNumber = (v) => myNumberSchema.safeParse(v).success);
219+
const isMyNumber = (v) => myNumberSchema.safeParse(v).success
220220

221221
const storedNumberAtom = atomWithStorage(
222222
'my-number',

0 commit comments

Comments
 (0)