@apolitical/component-library 8.10.0-ra.1 → 8.10.0-ra.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,8 +20,6 @@ interface Props {
20
20
  replyId: string;
21
21
  /** Whether the user is a member of the community */
22
22
  isMember: boolean;
23
- /** Whether the user has owner permissions, e.g. if they're a community owner */
24
- userHasOwnerPermissions?: boolean;
25
23
  /** Functions for the replies query */
26
24
  functions: NestedRepliesFunctions;
27
25
  type?: DiscussionType;
@@ -27,8 +27,6 @@ interface Props {
27
27
  parentId: string;
28
28
  /** Whether the user is a member of the community */
29
29
  isMember: boolean;
30
- /** Whether the user has owner permissions, e.g. if they're a community owner */
31
- userHasOwnerPermissions?: boolean;
32
30
  /** The reply data */
33
31
  reply: IParsedReplies;
34
32
  /** Whether to show the replies */
@@ -42,5 +40,5 @@ interface Props {
42
40
  };
43
41
  type?: DiscussionType;
44
42
  }
45
- export default function ReplyItem({ formFns, activityId, basePath, focus, isMember, parentId, reply, type, userHasOwnerPermissions, }: Props): JSX.Element;
43
+ export default function ReplyItem({ formFns, activityId, basePath, focus, isMember, parentId, reply, type, }: Props): JSX.Element;
46
44
  export {};
@@ -26,8 +26,6 @@ interface Props {
26
26
  activityTotalReplies: number;
27
27
  /** Whether the user is a member of the community */
28
28
  isMember: boolean;
29
- /** Whether the user has owner permissions, e.g. if they're a community owner */
30
- userHasOwnerPermissions?: boolean;
31
29
  /** Functions for the replies query */
32
30
  functions: RepliesFunctions;
33
31
  /** Props to pass into the profile form */