styling fixes

This commit is contained in:
Michael Freno
2025-12-25 01:15:21 -05:00
parent aa66fae1b7
commit 55446541fb
9 changed files with 24 additions and 26 deletions

View File

@@ -645,6 +645,10 @@ export default function CommentSectionWrapper(
privilegeLevel={props.privilegeLevel}
commentDeletionLoading={commentDeletionLoading()}
deleteComment={deleteComment}
onClose={() => {
setShowingDeletionPrompt(false);
clearModificationPrompt();
}}
/>
</div>
</Show>
@@ -659,6 +663,10 @@ export default function CommentSectionWrapper(
commenterDisplayName={commenterDisplayNameForModification()}
editCommentLoading={editCommentLoading()}
editComment={editComment}
onClose={() => {
setShowingCommentEdit(false);
clearModificationPrompt();
}}
/>
</div>
</Show>