Reverse auth sessions list
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
c540ae2201
commit
ac610f98d0
|
@ -55,7 +55,7 @@ const AuthToken: React.FC<IAuthToken> = ({ 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());
|
||||
|
|
Loading…
Reference in New Issue