Skip to content

Commit 2499432

Browse files
authored
Merge branch 'main' into ADE-66
2 parents 292bbb3 + 6d1a22d commit 2499432

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

frontend/src/pages/Home/HomePage.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,12 @@ const HomePage: React.FC = () => {
8888
}
8989

9090
return reports.map((report) => (
91-
<ReportItem key={report.id} report={report} onClick={() => handleReportClick(report.id)} />
91+
<ReportItem
92+
key={report.id}
93+
report={report}
94+
onClick={() => handleReportClick(report.id)}
95+
showBookmarkButton={true}
96+
/>
9297
));
9398
};
9499

0 commit comments

Comments
 (0)