From 2466a6397da7ec66d70157743afc1b7c39887494 Mon Sep 17 00:00:00 2001 From: vidvidvid Date: Tue, 3 Dec 2024 17:16:42 +0100 Subject: [PATCH] match continue button --- .../dialogs/manage/TransactionStepsHandler.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/packages/ui/app/_components/dialogs/manage/TransactionStepsHandler.tsx b/packages/ui/app/_components/dialogs/manage/TransactionStepsHandler.tsx index c2de24ef15..dcb6fa17b6 100644 --- a/packages/ui/app/_components/dialogs/manage/TransactionStepsHandler.tsx +++ b/packages/ui/app/_components/dialogs/manage/TransactionStepsHandler.tsx @@ -6,6 +6,8 @@ import { useReducer } from 'react'; import { ThreeCircles } from 'react-loader-spinner'; import { getScanUrlByChainId } from '@ui/utils/networkData'; +import { ArrowRight } from 'lucide-react'; +import { Button } from '@ui/components/ui/button'; export type TransactionStep = { error: boolean; @@ -130,12 +132,13 @@ function TransactionStepsHandler({ transactionSteps.length || transactionSteps.find((step) => step.error) !== undefined) && (
- + Continue + +
)}