more more more

This commit is contained in:
Michael Freno
2026-01-06 11:58:12 -05:00
parent 46f1efcd79
commit 1f661f4f89
5 changed files with 234 additions and 176 deletions

View File

@@ -176,6 +176,7 @@ export interface ReactionBarProps {
}
export interface CommentDeletionPromptProps {
isOpen: boolean;
privilegeLevel: PrivilegeLevel;
commentID: number;
commenterID: string;
@@ -192,6 +193,7 @@ export interface CommentDeletionPromptProps {
}
export interface EditCommentModalProps {
isOpen: boolean;
commentID: number;
commentBody: string;
editComment: (body: string, comment_id: number) => Promise<void>;