diff --git a/app/soapbox/features/auth_token_list/index.tsx b/app/soapbox/features/auth_token_list/index.tsx index 8014def9f..4563e4b34 100644 --- a/app/soapbox/features/auth_token_list/index.tsx +++ b/app/soapbox/features/auth_token_list/index.tsx @@ -55,7 +55,7 @@ const AuthToken: React.FC = ({ token }) => { const AuthTokenList: React.FC = () =>{ const dispatch = useAppDispatch(); const intl = useIntl(); - const tokens = useAppSelector(state => state.security.get('tokens')); + const tokens = useAppSelector(state => state.security.get('tokens').reverse()); useEffect(() => { dispatch(fetchOAuthTokens());