diff options
Diffstat (limited to 'vnext/src/ui')
-rw-r--r-- | vnext/src/ui/Avatar.js | 1 | ||||
-rw-r--r-- | vnext/src/ui/Thread.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/vnext/src/ui/Avatar.js b/vnext/src/ui/Avatar.js index 0ec679df..04ec5910 100644 --- a/vnext/src/ui/Avatar.js +++ b/vnext/src/ui/Avatar.js @@ -15,6 +15,7 @@ import './Avatar.css'; /** * Avatar component + * * @param {AvatarProps} props */ function Avatar({ user, style, link, children }) { diff --git a/vnext/src/ui/Thread.js b/vnext/src/ui/Thread.js index 20ea0a3c..0f0f88e3 100644 --- a/vnext/src/ui/Thread.js +++ b/vnext/src/ui/Thread.js @@ -8,7 +8,7 @@ import Spinner from './Spinner'; import { getMessages, comment, update } from '../api'; /** - * @type import('../api').Message + * @type { import('../api').Message } */ const emptyMessage = {}; |