mirror of
https://github.com/revoltchat/revite.git
synced 2024-12-26 23:42:11 -05:00
fix(reply): mention toggle would not persist
This commit is contained in:
parent
5737b32271
commit
301070a3cb
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ export default observer(({ channel, replies, setReplies }: Props) => {
|
||||||
mention:
|
mention:
|
||||||
message.author_id === client.user!._id
|
message.author_id === client.user!._id
|
||||||
? false
|
? false
|
||||||
: layout.getSectionState("SECTION_MENTION", false),
|
: layout.getSectionState(SECTION_MENTION, false),
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue