diff --git a/src/components/Dashboard/common/UserProfilePopover.jsx b/src/components/Dashboard/common/UserProfilePopover.jsx
index b7b2f5f..cc5988d 100644
--- a/src/components/Dashboard/common/UserProfilePopover.jsx
+++ b/src/components/Dashboard/common/UserProfilePopover.jsx
@@ -1,6 +1,6 @@
import PropTypes from 'prop-types'
import { createElement } from 'react'
-import { Flex, Typography, Button, Space, Dropdown, Divider } from 'antd'
+import { Flex, Typography, Button, Space, Dropdown, Divider, Card } from 'antd'
import { UserOutlined } from '@ant-design/icons'
import { useContext } from 'react'
import { useNavigate } from 'react-router-dom'
@@ -17,7 +17,9 @@ const UserProfilePopover = ({ onClose }) => {
const navigate = useNavigate()
const modelActions = User.actions || []
- const iconActions = modelActions.filter((a) => ICON_ACTION_NAMES.includes(a.name))
+ const iconActions = modelActions.filter((a) =>
+ ICON_ACTION_NAMES.includes(a.name)
+ )
const dropdownActions = modelActions.filter(
(a) => !ICON_ACTION_NAMES.includes(a.name)
)
@@ -96,9 +98,20 @@ const UserProfilePopover = ({ onClose }) => {
}}
/>
) : (
-
+
+
+
+
+
)}
{fullName && (