join: don't show modal if no kind

This commit is contained in:
Hunter Miller 2022-01-28 19:51:35 -06:00
parent 509bd2b11a
commit de747b343f

View File

@ -381,6 +381,10 @@ export function JoinRoute() {
const path = query.get('join-path')?.replace('web+urbitgraph://group/', '');
const redir = query.get('redir');
if (!kind) {
return null;
}
const desc: JoinDesc = path
? {
group: path,