authscape 1.0.170 → 1.0.180

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.
package/index.js CHANGED
@@ -8,7 +8,6 @@ exports.AuthScapeApp = AuthScapeApp;
8
8
  var _react = _interopRequireWildcard(require("react"));
9
9
  var _CircularProgress = _interopRequireDefault(require("@mui/material/CircularProgress"));
10
10
  var _Backdrop = _interopRequireDefault(require("@mui/material/Backdrop"));
11
- require("react-toastify/dist/ReactToastify.css");
12
11
  var _reactToastify = require("react-toastify");
13
12
  var _router = require("next/router");
14
13
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.170",
3
+ "version": "1.0.180",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,7 +1,6 @@
1
1
  import React, { useEffect, useState, useRef } from 'react';
2
2
  import CircularProgress from '@mui/material/CircularProgress';
3
3
  import Backdrop from '@mui/material/Backdrop';
4
- import 'react-toastify/dist/ReactToastify.css';
5
4
  import { ToastContainer, toast } from 'react-toastify';
6
5
  import { useRouter } from 'next/router';
7
6