From 52c90296f196a673d28ec9ba1a12c9057001a092 Mon Sep 17 00:00:00 2001 From: gazizova-vlada Date: Wed, 15 Mar 2023 12:07:38 +0300 Subject: [PATCH] Web:Client:Add Loader for ActiveSessions. --- .../client/src/pages/Profile/Section/Footer/index.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/client/src/pages/Profile/Section/Footer/index.js b/packages/client/src/pages/Profile/Section/Footer/index.js index 03a6c61622..df2f5120d2 100644 --- a/packages/client/src/pages/Profile/Section/Footer/index.js +++ b/packages/client/src/pages/Profile/Section/Footer/index.js @@ -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)( + + ) + ) + ) +);