From fd9524f1bd63946b92fd65a6cccd3a1a9b41c72c Mon Sep 17 00:00:00 2001 From: CollinBeczak Date: Mon, 28 Oct 2024 10:52:10 -0500 Subject: [PATCH] remove comments --- .../TaskConfirmationModal/TaskConfirmationModal.jsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/TaskConfirmationModal/TaskConfirmationModal.jsx b/src/components/TaskConfirmationModal/TaskConfirmationModal.jsx index ee363fb4..b660445e 100644 --- a/src/components/TaskConfirmationModal/TaskConfirmationModal.jsx +++ b/src/components/TaskConfirmationModal/TaskConfirmationModal.jsx @@ -221,8 +221,8 @@ export class TaskConfirmationModal extends Component { {applyingTagChanges && -
{/* Added border and padding */} -

{/* Increased font size, weight, and added background */} +

+

@@ -243,8 +243,8 @@ export class TaskConfirmationModal extends Component {

-
    {/* Added border and shadow */} -
  • Tag Name
  • {/* Increased font size */} +
      +
    • Tag Name
    • {_get(this.props, 'tagDiffs[0]') && Object.keys(_get(this.props, 'tagDiffs[0]')).map(tagName => { const tagChange = _get(this.props, 'tagDiffs[0]')[tagName]; if (['changed', 'removed', 'added'].includes(tagChange.status)) { @@ -254,7 +254,7 @@ export class TaskConfirmationModal extends Component { 'mr-text-lavender-rose': tagChange.status === 'removed', 'mr-text-picton-blue': tagChange.status === 'added', })}> - {tagName} {/* Increased font size */} + {tagName} ); }