@@ -209,7 +208,6 @@ const DropdownInput: React.FC
= ({ chains, onChange, value }
role={'button'}
onClick={() => {
setIsOpen(false);
- console.log(chainTypeId);
onChange(chainTypeId);
}}
className={isSelected ? 'selected' : ''}
diff --git a/packages/ui-components/src/Inputs/HeadlessDropDown/HeadlessDropDown.tsx b/packages/ui-components/src/Inputs/HeadlessDropDown/HeadlessDropDown.tsx
index 9e0954c8b3..1ba072d772 100644
--- a/packages/ui-components/src/Inputs/HeadlessDropDown/HeadlessDropDown.tsx
+++ b/packages/ui-components/src/Inputs/HeadlessDropDown/HeadlessDropDown.tsx
@@ -1,6 +1,6 @@
import { MenuItem } from '@material-ui/core';
import Menu from '@material-ui/core/Menu';
-import React, { ComponentProps } from 'react';
+import React from 'react';
import styled from 'styled-components';
const HeadlessDropdownWrapper = styled.div`
diff --git a/packages/ui-components/src/Inputs/InputLabel/InputLabel.tsx b/packages/ui-components/src/Inputs/InputLabel/InputLabel.tsx
index fed43218df..49d48e3437 100644
--- a/packages/ui-components/src/Inputs/InputLabel/InputLabel.tsx
+++ b/packages/ui-components/src/Inputs/InputLabel/InputLabel.tsx
@@ -1,8 +1,7 @@
import { Typography } from '@material-ui/core';
-import { Pallet } from '@webb-dapp/ui-components/styling/colors';
import { FontFamilies } from '@webb-dapp/ui-components/styling/fonts/font-families.enum';
import React from 'react';
-import styled, { css } from 'styled-components';
+import styled from 'styled-components';
type LabelStatus = 'initial' | 'highlighted' | 'error';
diff --git a/packages/ui-components/src/Inputs/NoteInput/MixerNoteInput.tsx b/packages/ui-components/src/Inputs/NoteInput/MixerNoteInput.tsx
index 2978e9d002..e45ab64f85 100644
--- a/packages/ui-components/src/Inputs/NoteInput/MixerNoteInput.tsx
+++ b/packages/ui-components/src/Inputs/NoteInput/MixerNoteInput.tsx
@@ -13,13 +13,6 @@ type NoteInputProps = {
onChange(next: string): void;
error?: string;
};
-const NoteDetails = styled.div`
- ${({ theme }: { theme: Pallet }) => css`
- border-top: 2px solid ${theme.borderColor2};
- `};
- padding: 11px;
- margin: 0 -11px;
-`;
export const MixerNoteInput: React.FC = ({ error, onChange, value }) => {
const depositNote = useDepositNote(value);
@@ -54,7 +47,6 @@ export const MixerNoteInput: React.FC = ({ error, onChange, valu
value={value}
inputProps={{ style: { fontSize: 14 } }}
onChange={(event) => {
- console.log(event.target.value);
if (event.target.value && event.target.value != '') {
onChange?.(event.target.value as string);
}
diff --git a/packages/ui-components/src/Inputs/WalletSelect/WalletDetails.tsx b/packages/ui-components/src/Inputs/WalletSelect/WalletDetails.tsx
index 4387b86001..3839c8e0c5 100644
--- a/packages/ui-components/src/Inputs/WalletSelect/WalletDetails.tsx
+++ b/packages/ui-components/src/Inputs/WalletSelect/WalletDetails.tsx
@@ -10,28 +10,6 @@ import styled, { css } from 'styled-components';
import { getRoundedAmountString } from '../..';
-const ColorCircle1 = styled.div<{ color: string }>`
- position: absolute;
- border-radius: 50%;
- top: 80px;
- left: 40px;
- height: 120px;
- width: 120px;
- transform: rotate(-15deg)
- background: ${({ color }) => color};
-`;
-
-const ColorCircle2 = styled.div<{ color: string }>`
- position: absolute;
- border-radius: 50%;
- top: 80px;
- left: 60px;
- height: 120px;
- width: 120px;
- transform: rotate(-15deg);
- background: ${({ color }) => color};
-`;
-
const ConnectionDetails = styled.div<{ walletId: number }>`
display: flex;
border-radius: 10px;
diff --git a/packages/ui-components/src/Inputs/WalletSelect/WalletManager.tsx b/packages/ui-components/src/Inputs/WalletSelect/WalletManager.tsx
index 27a1507315..455c783bcf 100644
--- a/packages/ui-components/src/Inputs/WalletSelect/WalletManager.tsx
+++ b/packages/ui-components/src/Inputs/WalletSelect/WalletManager.tsx
@@ -1,6 +1,5 @@
import { useWebContext } from '@webb-dapp/react-environment/webb-context';
import { useWallets } from '@webb-dapp/react-hooks/useWallets';
-import { above } from '@webb-dapp/ui-components/utils/responsive-utils';
import { ManagedWallet } from '@webb-tools/api-providers/types/wallet-config.interface';
import React, { useEffect, useState } from 'react';
import styled from 'styled-components';
diff --git a/packages/ui-components/src/Modal/Modal.tsx b/packages/ui-components/src/Modal/Modal.tsx
index 78b3d07546..2d97d5bbb2 100644
--- a/packages/ui-components/src/Modal/Modal.tsx
+++ b/packages/ui-components/src/Modal/Modal.tsx
@@ -1,14 +1,11 @@
/* eslint-disable sort-keys */
import { createStyles, Theme } from '@material-ui/core';
-import Icon from '@material-ui/core/Icon';
import MuiModel, { ModalProps as MuiModalProps } from '@material-ui/core/Modal';
import Slide from '@material-ui/core/Slide';
import { makeStyles } from '@material-ui/core/styles';
import Tooltip from '@material-ui/core/Tooltip';
import React from 'react';
-// import PerfectScrollbar from 'react-perfect-scrollbar';
-
export interface ModalProps extends Omit {
closeButton?: boolean;
unlimitedWidth?: boolean;
@@ -91,7 +88,6 @@ export const Modal: React.FC = ({ children, closeButton, unlimitedWi