authscape 1.0.30 → 1.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -125,7 +125,6 @@ export default function PaymentModal({title, description, amount, priceId, setIs
125
125
  }
126
126
 
127
127
  return (
128
- <>
129
128
  <Dialog
130
129
  fullWidth={true}
131
130
  maxWidth={"sm"}
@@ -248,6 +247,5 @@ export default function PaymentModal({title, description, amount, priceId, setIs
248
247
  {/* <Button onClick={handleClose}>Close</Button> */}
249
248
  </DialogActions>
250
249
  </Dialog>
251
- </>
252
250
  )
253
251
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.30",
3
+ "version": "1.0.34",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1,7 +1,5 @@
1
1
  import React, { useEffect, useState, useRef } from 'react';
2
2
  import apiService from './apiService';
3
- import Backdrop from '@mui/material/Backdrop';
4
- import CircularProgress from '@mui/material/CircularProgress';
5
3
 
6
4
  export default function AuthorizationComponent({children, setCurrentUser, userLoaded, isLoading}) {
7
5
 
@@ -32,12 +30,5 @@ export default function AuthorizationComponent({children, setCurrentUser, userLo
32
30
 
33
31
  }, [loaded]);
34
32
 
35
- return (
36
- <>
37
- {children}
38
- <Backdrop sx={{ color: '#fff', zIndex: 99999 }} open={isLoading}>
39
- <CircularProgress color="inherit" />
40
- </Backdrop>
41
- </>
42
- )
33
+ return (children)
43
34
  }