diff --git a/.changeset/real-terms-impress.md b/.changeset/real-terms-impress.md new file mode 100644 index 00000000..3d01c847 --- /dev/null +++ b/.changeset/real-terms-impress.md @@ -0,0 +1,5 @@ +--- +"@abstract-money/react": patch +--- + +useUse to use with re-exported useUse diff --git a/packages/react/src/hooks/account/wallet/use-send-funds-to-remote.ts b/packages/react/src/hooks/account/wallet/use-send-funds-to-remote.ts index 134aa418..66245758 100644 --- a/packages/react/src/hooks/account/wallet/use-send-funds-to-remote.ts +++ b/packages/react/src/hooks/account/wallet/use-send-funds-to-remote.ts @@ -19,7 +19,7 @@ export type UseSendFundsToRemoteParameters = { > } -export function useUseSendFundsToRemote({ +export function useSendFundsToRemote({ accountId, chainName, mutation, @@ -42,3 +42,8 @@ export function useUseSendFundsToRemote({ mutation, ) } + +/** + * @deprecated Use `useSendFundsToRemote` instead. + */ +export const useUseSendFundsToRemote = useSendFundsToRemote