update start angle of identicon ring

This commit is contained in:
Pavel Prichodko 2022-06-15 15:42:53 +02:00
parent f22d744732
commit 9010b1d585
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
1 changed files with 1 additions and 1 deletions

View File

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