diff --git a/components/Navigation.tsx b/components/Navigation.tsx index ec9b832..568f08b 100644 --- a/components/Navigation.tsx +++ b/components/Navigation.tsx @@ -36,7 +36,6 @@ function getAvatarUrl(userData: { [k: string]: any }): string { export default function (props: { avatar?: string; - discriminator?: string; email?: string; hide?: boolean; id?: string; @@ -63,7 +62,7 @@ export default function (props: { 1 << 9, 1 << 10, 1 << 11, - ].find((int) => permissions & int) + ].find((int) => permissions & int), ); } @@ -76,6 +75,13 @@ export default function (props: { } `} +