From cf249dd078a4839af3935b0e1869bd8441941235 Mon Sep 17 00:00:00 2001 From: Joe Karow <58997957+JoeKarow@users.noreply.github.com> Date: Fri, 19 Apr 2024 19:49:48 -0400 Subject: [PATCH] replace break with continue --- packages/ui/modals/Service/processor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/modals/Service/processor.tsx b/packages/ui/modals/Service/processor.tsx index 5aa671d10a..4f51bcb58d 100644 --- a/packages/ui/modals/Service/processor.tsx +++ b/packages/ui/modals/Service/processor.tsx @@ -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) {