@@ -64,10 +64,10 @@ export function PageFeedbackForm(props: {
6464 < div className = "rounded-full border border-tint-subtle bg-tint-base contrast-more:border-tint-12" >
6565 < div className = "flex" >
6666 < RatingButton
67- rating = { PageFeedbackRating . Bad }
68- label = { tString ( languages , 'was_this_helpful_negative ' ) }
69- onClick = { ( ) => onSubmitRating ( PageFeedbackRating . Bad ) }
70- active = { rating === PageFeedbackRating . Bad }
67+ rating = { PageFeedbackRating . Good }
68+ label = { tString ( languages , 'was_this_helpful_positive ' ) }
69+ onClick = { ( ) => onSubmitRating ( PageFeedbackRating . Good ) }
70+ active = { rating === PageFeedbackRating . Good }
7171 disabled = { rating !== undefined }
7272 />
7373 < RatingButton
@@ -78,10 +78,10 @@ export function PageFeedbackForm(props: {
7878 disabled = { rating !== undefined }
7979 />
8080 < RatingButton
81- rating = { PageFeedbackRating . Good }
82- label = { tString ( languages , 'was_this_helpful_positive ' ) }
83- onClick = { ( ) => onSubmitRating ( PageFeedbackRating . Good ) }
84- active = { rating === PageFeedbackRating . Good }
81+ rating = { PageFeedbackRating . Bad }
82+ label = { tString ( languages , 'was_this_helpful_negative ' ) }
83+ onClick = { ( ) => onSubmitRating ( PageFeedbackRating . Bad ) }
84+ active = { rating === PageFeedbackRating . Bad }
8585 disabled = { rating !== undefined }
8686 />
8787 </ div >
0 commit comments