+
+ {header}
+
+ {hasStx && (
+
+
+
+ )}
+ {sendMax && dustFiltered && }
+
+
+ {hasStx && (
+
+ )}
+ {!hasStx && (
+ {
+ navigate('/buy/STX');
+ }}
+ />
+ )}
+
+
+ );
+}
+
+export default Step2SelectAmount;
diff --git a/src/app/screens/sendStx/steps/Step3Confirm.tsx b/src/app/screens/sendStx/steps/Step3Confirm.tsx
new file mode 100644
index 000000000..0473d23fb
--- /dev/null
+++ b/src/app/screens/sendStx/steps/Step3Confirm.tsx
@@ -0,0 +1,24 @@
+import { useEffect } from 'react';
+import { useNavigate } from 'react-router-dom';
+
+type Props = {
+ unsignedSendStxTx: string;
+ fee: string;
+};
+
+function Step3Confirm({ unsignedSendStxTx, fee }: Props) {
+ const navigate = useNavigate();
+
+ useEffect(() => {
+ navigate('/confirm-stx-tx', {
+ state: {
+ unsignedTx: unsignedSendStxTx,
+ fee,
+ },
+ });
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, []);
+
+ return