Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aesirx-sso",
"version": "1.6.2",
"version": "1.6.3",
"license": "GPL-3.0-only",
"author": "AesirX",
"repository": "https://github.com/aesirxio/sso",
Expand Down
2 changes: 1 addition & 1 deletion src/SSOButton/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { Suspense, useEffect, useState } from 'react';
import React, { useState } from 'react';
import SSOModal from './modal';

interface SSOButtonProps {
Expand Down
2 changes: 1 addition & 1 deletion src/SSOConfig/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Social from './Social';
import Web3ContextProvider from '../SSOButton/Providers/web3';
import { Spinner } from '../components/Spinner';
import { notify } from '../components/Toast';
const MetaMask = React.lazy(() => import('./MetaMask'));
import MetaMask from './MetaMask';

const SSO = () => {
return (
Expand Down
8 changes: 4 additions & 4 deletions src/SignUpButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import arrow_left from '../SSOButton/images/arrow_left.svg';
import login_bg from '../SSOButton/images/login_bg.png';
import { SSOModalContext } from '../SSOButton/modal';
import CreateAccount from '../SSOButton/Providers/CreateAccount';
const SSOConcordiumProvider = React.lazy(() => import('../SSOButton/Providers/Concordium'));
const SSOEthereumProvider = React.lazy(() => import('../SSOButton/Providers/Ethereum'));
const SSOEmailProvider = React.lazy(() => import('../SSOButton/Providers/Email'));
const SSOSocialProvider = React.lazy(() => import('../SSOButton/Providers/Social'));
import SSOConcordiumProvider from '../SSOButton/Providers/Concordium';
import SSOEthereumProvider from '../SSOButton/Providers/Ethereum';
import SSOSocialProvider from '../SSOButton/Providers/Social';

interface SignUpButtonProps {
className: string;
text: string;
Expand Down