From c150578eb9fbf3123713502d8d0bb91f7b66160c Mon Sep 17 00:00:00 2001 From: Iveta Date: Tue, 12 Mar 2024 11:18:48 -0400 Subject: [PATCH] Cleanup --- src/app/page.tsx | 62 ------------------------------------------------ 1 file changed, 62 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c2468df5..a11d4742 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,5 @@ "use client"; -import { useState } from "react"; import { useRouter } from "next/navigation"; import { Card, Link, Text, Icon } from "@stellar/design-system"; @@ -8,29 +7,12 @@ import { NextLink } from "@/components/NextLink"; import { LayoutContentContainer } from "@/components/layout/LayoutContentContainer"; import { InfoCards } from "@/components/InfoCards"; import { SdsLink } from "@/components/SdsLink"; -import { AssetPicker } from "@/components/FormElements/AssetPicker"; import { Routes } from "@/constants/routes"; -import { AssetType } from "@/types/types"; -import { IncludeFailedPicker } from "@/components/FormElements/IncludeFailedPicker"; -import { OrderPicker } from "@/components/FormElements/OrderPicker"; export default function Introduction() { const router = useRouter(); - const [stringAssetId, setStringAssetId] = useState( - "issued", - ); - const [stringAssetValue, setStringAssetValue] = useState("aaa:bbb"); - - const [objectAssetId, setObjectAssetId] = useState( - "credit_alphanum4", - ); - const [objectAssetValue, setObjectAssetValue] = useState({ - code: "ccc", - issuer: "ddd", - }); - const infoCards = [ { id: "stellar-quest", @@ -73,50 +55,6 @@ export default function Introduction() { return ( - {/* TODO: remove, for testing only */} - -
- { - setStringAssetId(opId); - setStringAssetValue(opValue); - }} - /> - - { - setObjectAssetId(opId); - setObjectAssetValue(opValue); - }} - /> - - {}} - /> - - {}} - /> -
-
-