Merge branch 'sessions-page' into 'develop'
Reverse auth sessions list See merge request soapbox-pub/soapbox-fe!1380
This commit is contained in:
commit
3b0530073e
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue