authscape 1.0.41 → 1.0.42

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.
@@ -67,7 +67,7 @@ export default function PaymentModal({title, description, amount, priceId, setIs
67
67
  }
68
68
 
69
69
  const PaymentMethod = ({id, last4, clicked}) => {
70
- return (
70
+ return (<div>
71
71
  <Box fullWidth={true} sx={{height: 160, width:"100%", marginTop:2, backgroundColor:"#2196F3", position:"relative", border: "1px solid #2196F3", borderRadius: 1, display:"flex", flexDirection:"column", justifyContent:"center", textAlign:"center", cursor:"pointer"}}
72
72
  onClick={() => {
73
73
  clicked(id);
@@ -103,7 +103,7 @@ export default function PaymentModal({title, description, amount, priceId, setIs
103
103
  </Grid>
104
104
  </Grid>
105
105
  </Box>
106
- );
106
+ </div>);
107
107
  };
108
108
 
109
109
  function TabPanel(props) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "index.js",