Web:Client:Add Loader for ActiveSessions.

This commit is contained in:
Vlada Gazizova 2023-03-15 12:07:38 +03:00
parent 98c9fd3e37
commit 52c90296f1

View File

@ -11,6 +11,8 @@ import Link from "@docspace/components/link";
import Box from "@docspace/components/box";
import HelpButton from "@docspace/components/help-button";
import toastr from "@docspace/components/toast/toastr";
import Loaders from "@docspace/common/components/Loaders";
import withPeopleLoader from "../../../../HOCs/withPeopleLoader";
import {
LogoutConnectionDialog,
@ -263,4 +265,12 @@ export default inject(({ auth, setup }) => {
setLogoutAllVisible,
removeAllExecptThis,
};
})(observer(withTranslation(["Profile", "Common"])(ActiveSessions)));
})(
observer(
withTranslation(["Profile", "Common"])(
withPeopleLoader(ActiveSessions)(
<Loaders.ProfileFooter isProfileFooter />
)
)
)
);