interface: remove notifications redirect causing crash

Fixes urbit/landscape#1188
This commit is contained in:
Liam Fitzgerald 2021-09-23 12:10:32 +10:00
parent 802a0f91c2
commit d02a83a20b

View File

@ -104,8 +104,7 @@ export function JoinGroup(props: JoinGroupProps): ReactElement {
history.push(`/~landscape${group}`);
}
} catch (e) {
// drop them into inbox to show join request still pending
history.push('/~notifications');
console.error(e);
}
}, [waiter, history, associations, groups]);