Don't export getAuthBaseURL

This commit is contained in:
Alex Gleason 2022-08-09 11:15:22 -05:00
parent 5f2532c3d7
commit 8d089805ea
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ const maybeParseJSON = (data: string) => {
}
};
export const getAuthBaseURL = createSelector([
const getAuthBaseURL = createSelector([
(state: RootState, me: string | false | null) => state.accounts.getIn([me, 'url']),
(state: RootState, _me: string | false | null) => state.auth.get('me'),
], (accountUrl, authUserUrl) => {