Skip to content

Commit

Permalink
DX-666 Handled Exception on null
Browse files Browse the repository at this point in the history
  • Loading branch information
basiq-ash committed Apr 24, 2024
1 parent c33cbbe commit ad5a5c8
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit ad5a5c8

Please sign in to comment.