Merge pull request #1072 from Hexastack/1034-investigate-flickering-issue-when-selecting-subscriber-in-the-inbox-page

fix(frontend): resolve inbox flickering issue
This commit is contained in:
Med Marrouchi
2025-06-02 08:23:45 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ export const SubscribersList = (props: {
if (chat) {
chat.setSubscriberId(subscriber);
}
}, [chat, subscriber]);
}, [subscriber]);
return (
<>

View File

@@ -49,7 +49,7 @@ export const Inbox = () => {
>
<Grid item width="100%" height="100%" overflow="hidden">
<MainContainer style={{ height: "100%" }}>
<Sidebar position="left">
<Sidebar position="left" style={{ flexBasis: "100%" }}>
<Grid paddingX={1} paddingTop={2} paddingBottom={1} mx={1}>
<FilterTextfield
onChange={onSearch}