{timestamp.toLocaleTimeString([], {
@@ -93,7 +39,17 @@ const Heading = ({
return (
<>
- {!isReply && }
+ {!isReply && (
+
+
+
+ )}
diff --git a/src/sections/Chat/Messages/Message/index.tsx b/src/sections/Chat/Messages/Message/index.tsx
index 34aaaf3..881f2c4 100644
--- a/src/sections/Chat/Messages/Message/index.tsx
+++ b/src/sections/Chat/Messages/Message/index.tsx
@@ -88,7 +88,6 @@ const MessageComponent = React.memo(({ message, onClick, reply }: Props) => {
isOnline={isUserOnline}
isDraft={message.attributes.draft}
isPrivate={message.attributes.private}
- isCurrentUser={userData.user_id === state.auth.user?.user_id}
/>
diff --git a/src/sections/Chat/OnlineUsers/index.tsx b/src/sections/Chat/OnlineUsers/index.tsx
index eb7e307..1f41646 100644
--- a/src/sections/Chat/OnlineUsers/index.tsx
+++ b/src/sections/Chat/OnlineUsers/index.tsx
@@ -2,7 +2,7 @@ import React from 'react'
import styles from './index.module.scss'
import useGlobalState from 'store/state'
-import User from './User'
+import Dot from '../../../components/Dot'
export default () => {
const { state } = useGlobalState()
@@ -12,7 +12,7 @@ export default () => {
{state.onlineUsers.length}
{state.onlineUsers.map((user) => (
-
+
))}
)
diff --git a/src/sections/Chat/Session/UserBadge/index.tsx b/src/sections/Chat/Session/UserBadge/index.tsx
index 6d4148f..7063fda 100644
--- a/src/sections/Chat/Session/UserBadge/index.tsx
+++ b/src/sections/Chat/Session/UserBadge/index.tsx
@@ -4,6 +4,7 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import useGlobalState from 'store/state'
import { IconProp } from '@fortawesome/fontawesome-svg-core'
+import Dot from 'components/Dot'
import styles from './index.module.scss'
@@ -22,11 +23,8 @@ export default ({ onClick, small }: Props) => {
return (