Skip to content

Commit

Permalink
Fix popout component
Browse files Browse the repository at this point in the history
  • Loading branch information
Neodymium7 committed Sep 5, 2024
1 parent eae7dd3 commit 8cfd45c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion TypingUsersPopouts/src/modules.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const TypingUsersContainer: any = expectModule({
});

export const UserPopout = expectModule({
filter: (m) => m.toString?.().includes('"Unexpected missing user"'),
filter: (m) => m.toString?.().includes("UserProfilePopoutWrapper"),
name: "UserPopout",
fallback: (_props: any) => <ErrorPopout message="Error: User Popout module not found" />,
});
Expand Down
4 changes: 2 additions & 2 deletions TypingUsersPopouts/src/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "TypingUsersPopouts",
"author": "Neodymium",
"version": "1.3.5",
"version": "1.3.6",
"description": "Opens the user's popout when clicking on a name in the typing area.",
"source": "https://github.com/Neodymium7/BetterDiscordStuff/blob/main/TypingUsersPopouts/TypingUsersPopouts.plugin.js",
"invite": "fRbsqH87Av",
Expand All @@ -13,7 +13,7 @@
{
"title": "Fixed",
"type": "fixed",
"items": ["Fixed after latest Discord update"]
"items": ["Fixed rendering wrong popout component."]
}
]
}
Expand Down

0 comments on commit 8cfd45c

Please sign in to comment.