diff --git a/src/layouts/Inspector/ConsentFormView.tsx b/src/layouts/Inspector/ConsentFormView.tsx
index 136b347c8e7995e989e7ae28fbb9b23b98a41ac2..540f07d346f22b53611edc588285ae3829bc63bb 100644
--- a/src/layouts/Inspector/ConsentFormView.tsx
+++ b/src/layouts/Inspector/ConsentFormView.tsx
@@ -200,13 +200,23 @@ export const ConsentFormView = ({
                     defaultValues: k.defaultValues,
                     fieldType: k.fieldType,
                     isCorrect:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
                       tempArrayTwo[n].fields[k.label]["value"] === "correct"
                         ? true
                         : false,
                     inspectionValue:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
                       tempArrayTwo[n].fields[k.label]["inspectionValue"],
-                    comments: tempArrayTwo[n].fields[k.label]["comments"],
-                    attachments: tempArrayTwo[n].fields[k.label]["attachments"],
+                    comments:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
+                      tempArrayTwo[n].fields[k.label]["comments"],
+                    attachments:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
+                      tempArrayTwo[n].fields[k.label]["attachments"],
                   });
                 }
               });
@@ -856,13 +866,11 @@ export const ConsentFormView = ({
                                   </div>
 
                                   <div className="mt-3">
-                                   
                                     <InspectCheckOne
                                       label="Is the given information found correct?"
                                       inspectionValue={k.inspectionValue}
                                       disableEdit={true}
                                       showAttachment={false}
-                                      
                                       attachments={k.attachments}
                                       children={
                                         <div className="d-flex flex-row">
diff --git a/src/layouts/Inspector/FormView.tsx b/src/layouts/Inspector/FormView.tsx
index 0b176f534e3919e8756333d3167dd41f0998af9a..cf640c56ef5d1ec146807b348ce2f577ceafd198 100644
--- a/src/layouts/Inspector/FormView.tsx
+++ b/src/layouts/Inspector/FormView.tsx
@@ -192,12 +192,19 @@ export const FormView = ({ applicationData, formData }: FormViewProps) => {
                     defaultValues: k.defaultValues,
                     fieldType: k.fieldType,
                     isCorrect:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
                       tempArrayTwo[n].fields[k.label]["value"] === "correct"
                         ? true
                         : false,
                     inspectionValue:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
                       tempArrayTwo[n].fields[k.label]["inspectionValue"],
-                    comments: tempArrayTwo[n].fields[k.label]["comments"],
+                    comments:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
+                      tempArrayTwo[n].fields[k.label]["comments"],
                     attachments: [],
                   });
                 }
diff --git a/src/layouts/Regulator/ReviewApplicationLayout.tsx b/src/layouts/Regulator/ReviewApplicationLayout.tsx
index 19132c869c4794c7a9ccfa87238979cc9bd0d7c5..d09d74fe913d847288647d382b8d6da3cb2ab4a6 100644
--- a/src/layouts/Regulator/ReviewApplicationLayout.tsx
+++ b/src/layouts/Regulator/ReviewApplicationLayout.tsx
@@ -189,13 +189,23 @@ export const ReviewApplicationLayout = ({
                     defaultValues: k.defaultValues,
                     fieldType: k.fieldType,
                     isCorrect:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
                       tempArrayTwo[n].fields[k.label]["value"] === "correct"
                         ? true
                         : false,
                     inspectionValue:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
                       tempArrayTwo[n].fields[k.label]["inspectionValue"],
-                    comments: tempArrayTwo[n].fields[k.label]["comments"],
-                    attachments: tempArrayTwo[n].fields[k.label]["attachments"],
+                    comments:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
+                      tempArrayTwo[n].fields[k.label]["comments"],
+                    attachments:
+                      tempArrayTwo &&
+                      tempArrayTwo[n].fields.length &&
+                      tempArrayTwo[n].fields[k.label]["attachments"],
                   });
                 }
               });