We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43f4b92 commit 99c1c69Copy full SHA for 99c1c69
src/modules/ChannelSettings/components/ModerationPanel/OperatorList.tsx
@@ -100,7 +100,12 @@ export const OperatorList = (): ReactElement => {
100
<MenuItem
101
onClick={() => {
102
channel?.removeOperators([operator.userId]).then(() => {
103
- refreshList();
+ /**
104
+ * Limitation to server-side table update delay.
105
+ */
106
+ setTimeout(() => {
107
+ refreshList();
108
+ }, 500);
109
});
110
closeDropdown();
111
}}
0 commit comments