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
commit a4f7c00b1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

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

View File

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