mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-17 02:17:03 -04:00
fix(typingTweaks): refactor to support both refresh and non-refresh (#180)
This commit is contained in:
parent
597a661d0b
commit
c26c9f3b64
1 changed files with 3 additions and 3 deletions
|
@ -72,15 +72,15 @@ const TypingUser = ErrorBoundary.wrap(function ({ user, guildId }: Props) {
|
||||||
openUserProfile(user.id);
|
openUserProfile(user.id);
|
||||||
}}
|
}}
|
||||||
style={{
|
style={{
|
||||||
display: "grid",
|
display: "flex",
|
||||||
gridAutoFlow: "column",
|
alignItems: "center",
|
||||||
gap: "4px",
|
gap: "4px",
|
||||||
color: typingUserColor(guildId, user.id),
|
color: typingUserColor(guildId, user.id),
|
||||||
cursor: "pointer"
|
cursor: "pointer"
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{settings.store.showAvatars && (
|
{settings.store.showAvatars && (
|
||||||
<div style={{ marginTop: "4px" }}>
|
<div>
|
||||||
<Avatar
|
<Avatar
|
||||||
size="SIZE_16"
|
size="SIZE_16"
|
||||||
src={user.getAvatarURL(guildId, 128)} />
|
src={user.getAvatarURL(guildId, 128)} />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue