Skip to content

Commit

Permalink
fix: remove old dev condition
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnigs committed Sep 23, 2024
1 parent db70406 commit 6ac99d2
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ const about = z.object({
powerOfAttorneyName: z.string().optional(),
phoneNumber: z.string().refine(
(p) => {
// ignore validation on dev to test with Gervimenn remove b4 release
if (isRunningOnEnvironment('dev')) {
return true
}
const phoneNumber = parsePhoneNumberFromString(p, 'IS')
return phoneNumber?.isValid()
},
Expand Down

0 comments on commit 6ac99d2

Please sign in to comment.