Skip to content

Commit

Permalink
fix typo on connect label
Browse files Browse the repository at this point in the history
  • Loading branch information
balzack authored May 7, 2024
1 parent 73e70b1 commit 169bf59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/web/src/session/contact/Contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function Contact({ close, guid, listing }) {
)}
{ state.status === 'requested' && (
<Tooltip placement="top" title={state.strings.acceptConnection}>
<Button className="button" type="primary" loading={state.busy} icon={<UserSwitchOutlined />} size="medium" onClick={() => updateContact(actions.saveConnect)}>{ state.strings.cancel }</Button>
<Button className="button" type="primary" loading={state.busy} icon={<UserSwitchOutlined />} size="medium" onClick={() => updateContact(actions.saveConnect)}>{ state.strings.connect }</Button>
</Tooltip>
)}
{ state.status === 'requested' && (
Expand Down

0 comments on commit 169bf59

Please sign in to comment.