From ac610f98d06809b3a5987ec1296d2090de73015a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Sat, 14 May 2022 10:37:06 +0200 Subject: [PATCH] Reverse auth sessions list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- app/soapbox/features/auth_token_list/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());