removed useless export of autologout storage key

Signed-off-by: Manuel Scurti <manuel.scurti@agilelab.it>
This commit is contained in:
Manuel Scurti
2023-06-16 14:38:05 +02:00
parent 212db9bb6c
commit 60a19896f0
2 changed files with 1 additions and 4 deletions
@@ -15,6 +15,3 @@
*/
export * from './AutoLogoutProvider';
export * from './ConfigBasedAutoLogoutProvider';
/** @internal */
export { LAST_SEEN_ONLINE_STORAGE_KEY } from './disconnectedUsers';
@@ -31,7 +31,7 @@ import { commonProvider } from './commonProvider';
import { guestProvider } from './guestProvider';
import { customProvider } from './customProvider';
import { IdentityApiSignOutProxy } from './IdentityApiSignOutProxy';
import { LAST_SEEN_ONLINE_STORAGE_KEY } from '../../components';
import { LAST_SEEN_ONLINE_STORAGE_KEY } from '../../components/AutoLogoutProvider/disconnectedUsers';
const PROVIDER_STORAGE_KEY = '@backstage/core:SignInPage:provider';