From ad5a5c83948204c47359a4ba34ae667a0b4cc7d2 Mon Sep 17 00:00:00 2001 From: basiq-ash Date: Wed, 24 Apr 2024 10:40:03 +1000 Subject: [PATCH] DX-666 Handled Exception on null --- .../AccountVerificationFormStep3LoadingSteps.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/components/AccountVerificationForm/AccountVerificationFormStep3LoadingSteps.js b/components/AccountVerificationForm/AccountVerificationFormStep3LoadingSteps.js index d194f67c..864aaf3c 100644 --- a/components/AccountVerificationForm/AccountVerificationFormStep3LoadingSteps.js +++ b/components/AccountVerificationForm/AccountVerificationFormStep3LoadingSteps.js @@ -29,11 +29,10 @@ export function AccountVerificationFormStep3LoadingSteps() { const firstUUID = uuids[0]; setJobId(firstUUID); } else { - console.log("No UUID found in the string."); + setJobId(newJobId); } - } else { - console.log("The newJobId variable is null or undefined."); - } + } + }, []) return (