fix: allow invite screen to properly load while signed out

This commit is contained in:
Paul
2021-12-25 20:43:54 +00:00
parent 7f586e6f8c
commit 1b644d450d
4 changed files with 25 additions and 7 deletions

View File

@@ -51,7 +51,9 @@ export default observer(
{name
.split(" ")
.map((x) => x[0])
.filter((x) => typeof x !== "undefined")}
.filter((x) => typeof x !== "undefined")
.join("")
.substring(0, 3)}
</ServerText>
);
}