File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/features/settings/components/UserSettings Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { useState } from 'react'
22import { FaGithub } from 'react-icons/fa'
33import { FcGoogle } from 'react-icons/fc'
44import { IoCheckmarkOutline } from 'react-icons/io5'
5+ import { MdWorkspacePremium } from 'react-icons/md'
56import AvatarPlaceholder from 'src/assets/icons/avatar.svg?react'
67import StreakIcon from 'src/assets/icons/fire_icon.svg?react'
78import { Button , ConfirmModal } from 'src/components/Elements'
@@ -48,9 +49,11 @@ export const UserInfo = () => {
4849 />
4950
5051 < div className = "userDetails" >
51- { user ?. imageURL && < img src = { user . imageURL } className = "userImage" > </ img > }
52+ { user ?. imageURL && < img src = { user . imageURL } className = "userImage" / >}
5253 < div className = "userInfo" >
53- < div className = "userName" > { user . name } </ div >
54+ < div className = "userName" >
55+ { user . name } { user . isSupporter && < MdWorkspacePremium /> }
56+ </ div >
5457 < div className = "sub" >
5558 { providerId == 'github.com' ? (
5659 < FaGithub size = { 18 } />
You can’t perform that action at this time.
0 commit comments