Skip to content

Commit

Permalink
fixed formatting in feedbackmodal
Browse files Browse the repository at this point in the history
  • Loading branch information
srietkerk committed Feb 26, 2025
1 parent 951e80d commit fc7c5f7
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions react-common/components/controls/Feedback/Feedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,19 @@ export const FeedbackModal = (props: IFeedbackModalProps) => {
return (
<Modal className="feedback-modal" title={title} onClose={onClose}>
<>
{kind === "generic" &&
{ kind === "generic" &&
<Feedback
kind={kind}
frameId="menu-feedback-frame"
onClose={onClose}
/>}
{kind === "rating" &&
kind={kind}
frameId="menu-feedback-frame"
onClose={onClose}
/>
}
{ kind === "rating" &&
<Feedback
kind={kind}
frameId="activity-feedback-frame"
onClose={onClose} />
kind={kind}
frameId="activity-feedback-frame"
onClose={onClose}
/>
}
</>
</Modal>
Expand Down

0 comments on commit fc7c5f7

Please sign in to comment.