From c7fe4cd24e57849cea25243dc1668d29cf16d920 Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Tue, 31 Aug 2021 15:28:46 +0100 Subject: [PATCH] update imports --- tauri-wallet/src/routes/balance.tsx | 2 -- tauri-wallet/src/routes/sign-in.tsx | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/tauri-wallet/src/routes/balance.tsx b/tauri-wallet/src/routes/balance.tsx index 8b9eb90534..32a18a1a1f 100644 --- a/tauri-wallet/src/routes/balance.tsx +++ b/tauri-wallet/src/routes/balance.tsx @@ -2,8 +2,6 @@ import React, { useContext } from 'react' import { Button, Grid } from '@material-ui/core' import { Refresh } from '@material-ui/icons' import { Layout, NymCard, Page } from '../components' -import { NoClientError } from '../components/NoClientError' -import { Confirmation } from '../components/Confirmation' import { ClientContext } from '../context/main' import { Alert } from '@material-ui/lab' import { theme } from '../theme' diff --git a/tauri-wallet/src/routes/sign-in.tsx b/tauri-wallet/src/routes/sign-in.tsx index ecd1b553a6..bcd8c49bdd 100644 --- a/tauri-wallet/src/routes/sign-in.tsx +++ b/tauri-wallet/src/routes/sign-in.tsx @@ -11,8 +11,8 @@ import { } from '@material-ui/core' import { Alert } from '@material-ui/lab' import { useTheme } from '@material-ui/styles' -import logo from '../images/logo.png' import { invoke } from '@tauri-apps/api' +import logo from '../images/logo.png' import { ClientContext } from '../context/main' import { TClientDetails } from '../types/global'