File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,16 @@ const Home = () => {
48
48
params : { tenantFilter : currentTenant . defaultDomainName } ,
49
49
} )
50
50
51
+ const {
52
+ data : sharepoint ,
53
+ isLoading : isLoadingSPQuota ,
54
+ isSuccess : issuccessSPQuota ,
55
+ isFetching : isFetchingSPQuota ,
56
+ } = useGenericGetRequestQuery ( {
57
+ path : '/api/ListSharepointQuota' ,
58
+ params : { tenantFilter : currentTenant . defaultDomainName } ,
59
+ } )
60
+
51
61
const {
52
62
data : standards ,
53
63
isLoading : isLoadingStandards ,
@@ -272,6 +282,11 @@ const Home = () => {
272
282
</ >
273
283
) ) }
274
284
</ CCol >
285
+ < CCol sm = { 12 } md = { 4 } className = "mb-3" >
286
+ < p className = "fw-lighter" > Sharepoint Quota</ p >
287
+ { ( isLoadingSPQuota || isFetchingSPQuota ) && < Skeleton /> }
288
+ { sharepoint && ! isFetchingSPQuota && sharepoint ?. Dashboard }
289
+ </ CCol >
275
290
< CCol sm = { 12 } md = { 4 } className = "mb-3" >
276
291
< p className = "fw-lighter" > Applied Standards</ p >
277
292
{ ( isLoadingStandards || isFetchingStandards ) && < Skeleton /> }
You can’t perform that action at this time.
0 commit comments