We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ed0e5 commit b0cc9ceCopy full SHA for b0cc9ce
1 file changed
lib/validations.ts
@@ -338,7 +338,7 @@ export const compareParamsSchema = z
338
.regex(GITHUB_USERNAME_REGEX, { message: 'Invalid GitHub username for user2' }),
339
})
340
.refine((data) => data.user1.toLowerCase() !== data.user2.toLowerCase(), {
341
- message: 'Cannot compare a user with themselves',
+ message: 'Cannot compare a user with themselves.',
342
path: ['user2'],
343
});
344
0 commit comments