Skip to content

Commit bf6ae73

Browse files
authored
White background for 'They do not match' button (#29470)
1 parent 273cdf4 commit bf6ae73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/views/verification/VerificationShowSas.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,12 @@ export default class VerificationShowSas extends React.Component<IProps, IState>
165165
} else {
166166
confirm = (
167167
<div className="mx_VerificationShowSas_buttonRow">
168-
<AccessibleButton onClick={this.onDontMatchClick} kind="danger">
169-
{_t("encryption|verification|sas_no_match")}
170-
</AccessibleButton>
171168
<AccessibleButton onClick={this.onMatchClick} kind="primary">
172169
{_t("encryption|verification|sas_match")}
173170
</AccessibleButton>
171+
<AccessibleButton onClick={this.onDontMatchClick} kind="secondary">
172+
{_t("encryption|verification|sas_no_match")}
173+
</AccessibleButton>
174174
</div>
175175
);
176176
}

0 commit comments

Comments
 (0)