aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/permissionsViewer/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/permissionsViewer/index.tsx')
-rw-r--r--src/plugins/permissionsViewer/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/permissionsViewer/index.tsx b/src/plugins/permissionsViewer/index.tsx
index 7de29b3..8f31080 100644
--- a/src/plugins/permissionsViewer/index.tsx
+++ b/src/plugins/permissionsViewer/index.tsx
@@ -126,7 +126,7 @@ function MenuItem(guildId: string, id?: string, type?: MenuItemParentType) {
function makeContextMenuPatch(childId: string | string[], type?: MenuItemParentType): NavContextMenuPatchCallback {
return (children, props) => () => {
- if (!props) return children;
+ if (!props || (type === MenuItemParentType.User && !props.user) || (type === MenuItemParentType.Guild && !props.guild)) return children;
const group = findGroupChildrenByChildId(childId, children);