Skip to content

Commit

Permalink
replace break with continue
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeKarow committed Apr 19, 2024
1 parent 3603dd3 commit cf249dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/modals/Service/processor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const processAccessInstructions = ({
for (const item of accessDetails) {
const parsed = accessInstructions.getAll().safeParse(item.data)
if (!parsed.success) {
break
continue
}
const { access_type } = parsed.data
switch (access_type) {
Expand Down

0 comments on commit cf249dd

Please sign in to comment.