diff --git a/app/javascript/components/record-actions/link-incident-to-case/content/component.jsx b/app/javascript/components/record-actions/link-incident-to-case/content/component.jsx
index 37a476154b..bfa277f1f8 100644
--- a/app/javascript/components/record-actions/link-incident-to-case/content/component.jsx
+++ b/app/javascript/components/record-actions/link-incident-to-case/content/component.jsx
@@ -1,7 +1,9 @@
import { Grid } from "@material-ui/core";
import ArrowBackIosIcon from "@material-ui/icons/ArrowBackIos";
+import ArrowForwardIosIcon from "@material-ui/icons/ArrowForwardIos";
import CheckIcon from "@material-ui/icons/Check";
import PropTypes from "prop-types";
+import { fromJS } from "immutable";
import ActionButton, { ACTION_BUTTON_TYPES } from "../../../action-button";
import IndexTable from "../../../index-table";
@@ -12,6 +14,7 @@ import PhotoArray from "../../../record-form/form/field-types/attachments/photo-
import useOptions from "../../../form/use-options";
import { LOOKUPS } from "../../../../config";
import { getOptionText } from "../../../record-form/form/subforms/subform-traces/components/field-row/utils";
+import { useThemeHelper } from "../../../../libs";
import { buildTableOptions } from "./utils";
@@ -19,6 +22,12 @@ function Component({ showTable = false, caseInfo, handleBack, handleOk, handleRo
const i18n = useI18n();
const genderLookups = useOptions({ source: LOOKUPS.gender_unknown });
const tableOptions = buildTableOptions({ i18n, handleRowClick, recordTypeValue });
+ const { isRTL } = useThemeHelper();
+
+ const images = caseInfo
+ .get("photos", fromJS([]))
+ ?.map(img => img.get("attachment_url"))
+ .toArray();
if (showTable) {
return