File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/components/structures Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Please see LICENSE files in the repository root for full details.
99import React , { type JSX , createRef , type ReactNode } from "react" ;
1010import { type Room } from "matrix-js-sdk/src/matrix" ;
1111import {
12+ ChatSolidIcon ,
1213 HomeSolidIcon ,
1314 LockSolidIcon ,
1415 QrCodeIcon ,
@@ -51,7 +52,6 @@ import { SDKContext } from "../../contexts/SDKContext";
5152import { shouldShowFeedback } from "../../utils/Feedback" ;
5253import { Icon as DarkLightModeSvg } from "../../../res/img/element-icons/roomlist/dark-light-mode.svg" ;
5354import { Icon as NotificationsIcon } from "../../../res/img/element-icons/notifications.svg" ;
54- import { Icon as FeedbackIcon } from "../../../res/img/element-icons/feedback.svg" ;
5555
5656interface IProps {
5757 isPanelCollapsed : boolean ;
@@ -317,7 +317,7 @@ export default class UserMenu extends React.Component<IProps, IState> {
317317 if ( shouldShowFeedback ( ) ) {
318318 feedbackButton = (
319319 < IconizedContextMenuOption
320- icon = { < FeedbackIcon /> }
320+ icon = { < ChatSolidIcon /> }
321321 label = { _t ( "common|feedback" ) }
322322 onClick = { this . onProvideFeedback }
323323 />
You can’t perform that action at this time.
0 commit comments