Skip to content

Commit

Permalink
Formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
basil-ahmed committed Nov 18, 2023
1 parent 84fd439 commit 92bd203
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,9 @@ const DesktopIssueDetails = ({ index }) => {
</div>

{/* Map through the comments and display them starting with Update 2 */}
{issue.comments[0] != null && (issue.comments.map((update, index) => (
{issue.comments[0] != null &&
(issue.comments.map(
(update, index) => (
<div key={index} className="update">
{/* Updates in Reverse */}
<h4>Update {issue.comments.length - index}</h4>
Expand Down

0 comments on commit 92bd203

Please sign in to comment.