Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
thsparks committed Feb 28, 2024
1 parent e212501 commit cbe0083
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions teachertool/src/components/ConfirmationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ export const ConfirmationModal: React.FC<IProps> = () => {
];

return teacherTool.modal === "confirmation" && teacherTool.confirmationOptions ? (
<Modal
title={teacherTool.confirmationOptions.title}
onClose={handleCancel}
actions={actions}
>
<Modal title={teacherTool.confirmationOptions.title} onClose={handleCancel} actions={actions}>
{teacherTool.confirmationOptions.message}
</Modal>
) : null;
Expand Down

0 comments on commit cbe0083

Please sign in to comment.