update start angle of identicon ring

This commit is contained in:
Pavel Prichodko 2022-06-15 15:42:53 +02:00
parent 08becf1b77
commit a8f6b94ce2
No known key found for this signature in database
GPG Key ID: 8E4C82D464215E83
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ const Avatar = (props: Props) => {
const identiconRing = useMemo(() => { const identiconRing = useMemo(() => {
if (colorHash) { if (colorHash) {
const gradient = generateIdenticonRing(colorHash) const gradient = generateIdenticonRing(colorHash)
return `conic-gradient(${gradient})` return `conic-gradient(from 90deg, ${gradient})`
} }
}, [colorHash]) }, [colorHash])