mirror of
https://github.com/mastodon/mastodon.git
synced 2026-07-28 15:47:25 -05:00
Fix swapped order of "accept/reject" actions in follow requests (#39862)
This commit is contained in:
parent
e95b87ed87
commit
de2cf76e4a
|
|
@ -61,18 +61,18 @@ export const NotificationFollowRequest: React.FC<{
|
|||
|
||||
const actions = (
|
||||
<>
|
||||
<IconButton
|
||||
title={intl.formatMessage(messages.reject)}
|
||||
icon='times'
|
||||
iconComponent={CloseIcon}
|
||||
onClick={onReject}
|
||||
/>
|
||||
<IconButton
|
||||
title={intl.formatMessage(messages.authorize)}
|
||||
icon='check'
|
||||
iconComponent={CheckIcon}
|
||||
onClick={onAuthorize}
|
||||
/>
|
||||
<IconButton
|
||||
title={intl.formatMessage(messages.reject)}
|
||||
icon='times'
|
||||
iconComponent={CloseIcon}
|
||||
onClick={onReject}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user