From 56d15007b24e4c5a683b3de8baf18acebce08986 Mon Sep 17 00:00:00 2001 From: Aiden <30964272+0xaaiden@users.noreply.github.com> Date: Tue, 19 Nov 2024 19:10:23 -0500 Subject: [PATCH 1/2] Add submit labels page Add components for submitting labels by chain to the dashboard submit page. * Import `DashboardSubmitLabel` and `DashboardSubmitBulkLabels` components in `app/(dashboard)/dashboard/submit/page.tsx`. * Add `DashboardSubmitLabel` and `DashboardSubmitBulkLabels` components to the page content in `app/(dashboard)/dashboard/submit/page.tsx`. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/function03-labs/WalletLabels?shareId=XXXX-XXXX-XXXX-XXXX). --- app/(dashboard)/dashboard/submit/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/(dashboard)/dashboard/submit/page.tsx b/app/(dashboard)/dashboard/submit/page.tsx index 7eee12fc..fd1af062 100644 --- a/app/(dashboard)/dashboard/submit/page.tsx +++ b/app/(dashboard)/dashboard/submit/page.tsx @@ -5,6 +5,7 @@ import { getUser } from "@/lib/app/user-profile" import { getSession } from "@/lib/session" import { DashboardSubmitLabel } from "@/components/app/dashboard-submit-label" +import { DashboardSubmitBulkLabels } from "@/components/app/dashboard-submit-bulk-labels" import { Card, CardContent, CardHeader } from "@/components/ui/card" import { PageHeader } from "@/components/ui/page-header" @@ -34,6 +35,7 @@ export default async function SubmitPage() { + From 0298f9698c51a39066bd0961073dd9a04c12b462 Mon Sep 17 00:00:00 2001 From: Aiden <30964272+0xaaiden@users.noreply.github.com> Date: Tue, 19 Nov 2024 19:12:16 -0500 Subject: [PATCH 2/2] Import `DashboardSubmitLabel` and `DashboardSubmitBulkLabels` components and add them to the page * Import `DashboardSubmitLabel` and `DashboardSubmitBulkLabels` components * Add `DashboardSubmitLabel` and `DashboardSubmitBulkLabels` components to the page