aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/Contact.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2022-11-06 03:30:40 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:58 +0300
commit7b14a8f3faf7672f0aefbf93d5c37f62a169b535 (patch)
treeb027f687d286316afd493c3cf3cbbbc7aedd7396 /vnext/src/ui/Contact.js
parent00ff146fb45b64aa3a4278c05e4a4c476152e2b4 (diff)
Cleanup ESLint warnings
Diffstat (limited to 'vnext/src/ui/Contact.js')
-rw-r--r--vnext/src/ui/Contact.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/vnext/src/ui/Contact.js b/vnext/src/ui/Contact.js
index 2d009738..a0d32e84 100644
--- a/vnext/src/ui/Contact.js
+++ b/vnext/src/ui/Contact.js
@@ -3,13 +3,14 @@ import { memo } from 'react';
import Avatar from './Avatar';
/**
- * @typedef {Object} ContactProps
+ * @typedef {object} ContactProps
* @property {import('../api').Chat} user
- * @property {React.CSSProperties} style
+ * @property {import('react').CSSProperties} style
*/
/**
* Contact component
+ *
* @param {ContactProps} props
*/
function Contact({ user, style }) {