Skip to content

Commit

Permalink
chore: removed mssg icon that's beside a conversationTile name
Browse files Browse the repository at this point in the history
  • Loading branch information
utin-francis-peter committed Oct 8, 2024
1 parent 04b4db7 commit 62af754
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions frontend/src/conversation/ConversationTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import { SyntheticEvent, useEffect, useRef, useState } from 'react';
import { useSelector } from 'react-redux';
import Edit from '../assets/edit.svg';
import Exit from '../assets/exit.svg';
import Message from '../assets/message.svg';
import MessageDark from '../assets/message-dark.svg';
import { useDarkTheme } from '../hooks';
import ConfirmationModal from '../modals/ConfirmationModal';
import CheckMark2 from '../assets/checkMark2.svg';
Expand Down Expand Up @@ -100,10 +98,7 @@ export default function ConversationTile({
}`}
>
<div className={`flex w-10/12 gap-4`}>
<img
src={isDarkTheme ? MessageDark : Message}
className="ml-4 w-5 dark:text-white"
/>
<div></div>
{isEdit ? (
<input
autoFocus
Expand Down

0 comments on commit 62af754

Please sign in to comment.