Skip to content

Commit da6e9d5

Browse files
committedFeb 19, 2025
Fix naming
Signed-off-by: Emre Bogazliyanlioglu <emre@wormholelabs.xyz>
1 parent 41d0bb0 commit da6e9d5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎wormhole-connect/src/hooks/useConfirmTransaction.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,11 @@ type ReturnProps = {
4343
onConfirm: () => void;
4444
};
4545

46-
const useSendTransaction = (props: Props): ReturnProps => {
46+
const useConfirmTransaction = (props: Props): ReturnProps => {
4747
const dispatch = useDispatch();
4848

4949
const [error, setError] = useState<string | undefined>(undefined);
50+
// errorInternal can be a result of custom validation, hence of any type.
5051
// eslint-disable-next-line @typescript-eslint/no-explicit-any
5152
const [errorInternal, setErrorInternal] = useState<any | undefined>(
5253
undefined,
@@ -285,4 +286,4 @@ const useSendTransaction = (props: Props): ReturnProps => {
285286
};
286287
};
287288

288-
export default useSendTransaction;
289+
export default useConfirmTransaction;

0 commit comments

Comments
 (0)