We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41d0bb0 commit da6e9d5Copy full SHA for da6e9d5
wormhole-connect/src/hooks/useConfirmTransaction.ts
@@ -43,10 +43,11 @@ type ReturnProps = {
43
onConfirm: () => void;
44
};
45
46
-const useSendTransaction = (props: Props): ReturnProps => {
+const useConfirmTransaction = (props: Props): ReturnProps => {
47
const dispatch = useDispatch();
48
49
const [error, setError] = useState<string | undefined>(undefined);
50
+ // errorInternal can be a result of custom validation, hence of any type.
51
// eslint-disable-next-line @typescript-eslint/no-explicit-any
52
const [errorInternal, setErrorInternal] = useState<any | undefined>(
53
undefined,
@@ -285,4 +286,4 @@ const useSendTransaction = (props: Props): ReturnProps => {
285
286
287
288
-export default useSendTransaction;
289
+export default useConfirmTransaction;
0 commit comments