Reverse auth sessions list

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2022-05-14 10:37:06 +02:00
parent c540ae2201
commit ac610f98d0
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ const AuthToken: React.FC<IAuthToken> = ({ token }) => {
const AuthTokenList: React.FC = () =>{ const AuthTokenList: React.FC = () =>{
const dispatch = useAppDispatch(); const dispatch = useAppDispatch();
const intl = useIntl(); const intl = useIntl();
const tokens = useAppSelector(state => state.security.get('tokens')); const tokens = useAppSelector(state => state.security.get('tokens').reverse());
useEffect(() => { useEffect(() => {
dispatch(fetchOAuthTokens()); dispatch(fetchOAuthTokens());