aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/PM.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/components/PM.js')
-rw-r--r--vnext/src/components/PM.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/vnext/src/components/PM.js b/vnext/src/components/PM.js
index 44b81129..1833f3a3 100644
--- a/vnext/src/components/PM.js
+++ b/vnext/src/components/PM.js
@@ -4,13 +4,13 @@ import Avatar from './Avatar';
import { format } from '../utils/embed';
export default function PM(props) {
- const {chat} = props;
+ const { chat } = props;
return (
- <li style={chatItemStyle}>
- <Avatar user={chat.user} />
- <p dangerouslySetInnerHTML={{ __html: format(chat.body) }} />
- </li>
- );
+ <li style={chatItemStyle}>
+ <Avatar user={chat.user} />
+ <p dangerouslySetInnerHTML={{ __html: format(chat.body) }} />
+ </li>
+ );
}
const chatItemStyle = {