Fix streaming access token

This commit is contained in:
Alex Gleason
2021-03-24 17:53:09 -05:00
parent 94da1f6722
commit 74f48229fc
3 changed files with 8 additions and 2 deletions

View File

@ -0,0 +1,4 @@
export const getAccessToken = state => {
const me = state.getIn(['auth', 'me']);
return state.getIn(['auth', 'users', me, 'access_token']);
};