From 9a17de0921a9f34e34a5d7f4da2173ade5b2260d Mon Sep 17 00:00:00 2001 From: ioneone Date: Thu, 25 Aug 2022 12:07:50 -0700 Subject: [PATCH] chore: remove unnecessary props from FeedbackButtton --- src/components/FeedbackButton/FeedbackButton.tsx | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/components/FeedbackButton/FeedbackButton.tsx b/src/components/FeedbackButton/FeedbackButton.tsx index 5375ace4e..69cc48689 100644 --- a/src/components/FeedbackButton/FeedbackButton.tsx +++ b/src/components/FeedbackButton/FeedbackButton.tsx @@ -5,9 +5,6 @@ import Icon from '../Icon/Icon'; import FeedbackModal from './components/FeedbackModal'; export interface FeedbackFormData { - feature: string; - recipient: string; - cc?: string[]; rating: number | null; comment: string | null; } @@ -16,7 +13,6 @@ export interface FeedbackButtonProps { backdrop?: boolean; block?: boolean; cancelButtonText?: string; - cc?: string[]; children?: ReactNode; className?: string; color?: string; @@ -26,7 +22,6 @@ export interface FeedbackButtonProps { commentSubtitle?: ReactNode; disabled?: boolean; doSubmit: (form: FeedbackFormData) => Promise; - feature: string; highRatingText?: string; lowRatingText?: string; modalTitle?: ReactNode; @@ -35,7 +30,6 @@ export interface FeedbackButtonProps { ratingIncluded?: boolean; ratingRequired?: boolean; ratingSubtitle?: ReactNode; - recipient: string; size?: string; submitButtonText?: string; } @@ -90,16 +84,13 @@ const defaultProps = { const FeedbackButton: FC = ({ backdrop = defaultProps.backdrop, block, - cc, children, className, color = defaultProps.color, disabled, doSubmit, - feature, modalTitle = defaultProps.modalTitle, outline = defaultProps.outline, - recipient, size, cancelButtonText = defaultProps.cancelButtonText, commentIncluded = defaultProps.commentIncluded, @@ -124,9 +115,6 @@ const FeedbackButton: FC = ({ comment: string | null; }) => { const form: FeedbackFormData = { - feature, - recipient, - cc, rating, comment, }; @@ -163,7 +151,7 @@ const FeedbackButton: FC = ({ backdrop={backdrop} onSubmit={onSubmitClick} onCancel={() => setIsOpen(false)} - modalTitle={modalTitle || feature} + modalTitle={modalTitle} cancelButtonText={cancelButtonText} commentIncluded={commentIncluded} commentPlaceholder={commentPlaceholder}