mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-11 02:16:23 +00:00
someone made destructuring with strings not work lol
This commit is contained in:
parent
c7ed529a6c
commit
b5804d548c
1 changed files with 3 additions and 2 deletions
|
@ -19,7 +19,8 @@ let regexes = [];
|
|||
|
||||
const MenuHeader = findByCodeLazy("useInDesktopNotificationCenterExperiment)(");
|
||||
const Popout = findByPropsLazy("ItemsPopout");
|
||||
const { recentMentionsPopout } = findByPropsLazy("recentMentionsPopout");
|
||||
const recentMentionsPopoutClass = findByPropsLazy("recentMentionsPopout");
|
||||
|
||||
const { createMessageRecord } = findByPropsLazy("createMessageRecord", "updateMessageRecord");
|
||||
|
||||
|
||||
|
@ -253,7 +254,7 @@ export default definePlugin({
|
|||
return (
|
||||
<>
|
||||
<Popout.default
|
||||
className={recentMentionsPopout}
|
||||
className={recentMentionsPopoutClass.recentMentionsPopout}
|
||||
renderHeader={() => header}
|
||||
renderMessage={messageRender}
|
||||
channel={channel}
|
||||
|
|
Loading…
Reference in a new issue