Skip to content

Commit

Permalink
Revert lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SujithThirumalaisamy authored Aug 31, 2024
1 parent ab67d8e commit 2709981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/payoutMethods/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const payoutMethodSchema = z.object({
.optional(),
solanaAddress: z
.string()
.refine((value) => /^[A-Za-z0-9]{44}$/.test(value), {
.refine((value) => (/^[A-Za-z0-9]{44}$/).test(value), {
message: 'Enter a valid Solana address',
})
.optional(),
Expand Down

0 comments on commit 2709981

Please sign in to comment.