diff --git a/frontend/src/component/feedbackNew/FeedbackComponent.tsx b/frontend/src/component/feedbackNew/FeedbackComponent.tsx index da5018b8e2..0aa7384afd 100644 --- a/frontend/src/component/feedbackNew/FeedbackComponent.tsx +++ b/frontend/src/component/feedbackNew/FeedbackComponent.tsx @@ -1,6 +1,7 @@ import { Box, Button, + ClickAwayListener, IconButton, styled, TextField, @@ -257,106 +258,118 @@ export const FeedbackComponent = ({ condition={showFeedback} show={ - - - - - - - - - Help us to improve Unleash - - - - - {feedbackData.title} - - - {[1, 2, 3, 4, 5, 6, 7].map((score) => ( - - - {score} - - ))} - - - - Very difficult - - - Very easy - - - - - - {feedbackData.positiveLabel} - - - - - - {feedbackData.areasForImprovementsLabel} - - - - - closeFeedback()}> + + + - Send Feedback - - - - + + + + + + Help us to improve Unleash + + + + + {feedbackData.title} + + + {[1, 2, 3, 4, 5, 6, 7].map( + (score) => ( + + + {score} + + ), + )} + + + + Very difficult + + + Very easy + + + + + + {feedbackData.positiveLabel} + + + + + + { + feedbackData.areasForImprovementsLabel + } + + + + + + Send Feedback + + + + + } />