[Glitch] Upgrade to Prettier 3

Port 73b64b8917 to glitch-soc
This commit is contained in:
Claire
2023-07-13 13:58:47 +02:00
parent 95a1fde6b6
commit 0870c7c95e
18 changed files with 55 additions and 39 deletions

View File

@@ -33,7 +33,7 @@ export const Avatar: React.FC<Props> = ({
if (account) {
style.backgroundImage = `url(${account.get(
hovering ? 'avatar' : 'avatar_static'
hovering ? 'avatar' : 'avatar_static',
)})`;
}
@@ -42,7 +42,7 @@ export const Avatar: React.FC<Props> = ({
className={classNames(
'account__avatar',
{ 'account__avatar-inline': inline },
className
className,
)}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}