more button remove + remove all logs

This commit is contained in:
hamid zarghami
2025-07-30 09:47:21 +03:30
parent ef26c63e33
commit e35634a0c2
17 changed files with 71 additions and 51 deletions
-1
View File
@@ -118,7 +118,6 @@ const DetailEmail: FC = () => {
// Mark message as seen when it's loaded and not already seen
useEffect(() => {
if (messageDetail && !messageDetail.seen && id) {
console.log('Marking message as seen:', id, 'Current seen status:', messageDetail.seen)
emailActions.markAsSeen({ messageId: Number(id), mailbox: mailbox || '' })
}
}, [messageDetail, emailActions, id])
+1 -1
View File
@@ -149,7 +149,7 @@ const List: FC = () => {
};
const tableActions = (
<div className='flex items-center gap-2 md:gap-4'>
<div className='flex items-center gap-4 md:gap-4'>
<div className="flex items-center gap-2">
<Checkbox
checked={selectAll}