Skip to content
1 change: 1 addition & 0 deletions apps/app/Models/QueryParams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export class QueryParams {
hideFrom?: boolean = false;
hideTo?: boolean = false;
transferAmount?: string = "";
receiveAmount?: string = "";
balances?: string = "";
account?: string = "";
buttonTextColor?: string = "";
Expand Down
48 changes: 0 additions & 48 deletions apps/app/components/Common/TypingEffect.tsx

This file was deleted.

1 change: 1 addition & 0 deletions apps/app/components/DTOs/SwapFormValues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { ExtendedNetwork, ExtendedToken } from "../../Models/Network";

export type SwapFormValues = {
amount?: string;
receiveAmount?: string;
destination_address?: string;
fromCurrency?: ExtendedToken;
toCurrency?: ExtendedToken;
Expand Down
2 changes: 1 addition & 1 deletion apps/app/components/FeeDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface QuoteComponentProps {
}

export default function QuoteDetails({ values, quote, isQuoteLoading }: QuoteComponentProps) {
const { toCurrency: toAsset, fromCurrency, amount } = values || {};
const { toCurrency: toAsset, fromCurrency } = values || {};
const [isAccordionOpen, setIsAccordionOpen] = useState<boolean>(false);

if (!quote) return null
Expand Down
13 changes: 0 additions & 13 deletions apps/app/components/Icons/Cancell.tsx

This file was deleted.

10 changes: 0 additions & 10 deletions apps/app/components/Icons/CheckedIcon.tsx

This file was deleted.

9 changes: 0 additions & 9 deletions apps/app/components/Icons/CircleX.tsx

This file was deleted.

14 changes: 0 additions & 14 deletions apps/app/components/Icons/DiscordLogo.tsx

This file was deleted.

Loading