This commit is contained in:
parent
810c68bc96
commit
d771aff700
|
|
@ -111,6 +111,7 @@ const App: React.FC = () => {
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
setTimeout(() => {
|
||||||
onOtherSignalr(async (item: any) => {
|
onOtherSignalr(async (item: any) => {
|
||||||
switch (item.key) {
|
switch (item.key) {
|
||||||
case 'Invitation':
|
case 'Invitation':
|
||||||
|
|
@ -127,7 +128,8 @@ const App: React.FC = () => {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}, [navigate])
|
}, 3000);
|
||||||
|
}, [])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue