Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into tbtc-depositor
Browse files Browse the repository at this point in the history
  • Loading branch information
nkuba committed Mar 1, 2024
2 parents c0c0746 + ec17423 commit 0e72db4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion dapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"@tanstack/react-table": "^8.11.3",
"axios": "^1.6.7",
"ethers": "^6.10.0",
"axios": "^1.6.7",
"formik": "^2.4.5",
"framer-motion": "^10.16.5",
"react": "^18.2.0",
Expand Down
4 changes: 3 additions & 1 deletion dapp/src/contexts/StakeFlowContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export function StakeFlowProvider({ children }: { children: React.ReactNode }) {
initStake: acreInitStake,
signMessage,
btcAddress,
depositReceipt,
stake,
} = useStakeFlow()

Expand All @@ -51,9 +52,10 @@ export function StakeFlowProvider({ children }: { children: React.ReactNode }) {
initStake,
signMessage,
btcAddress,
depositReceipt,
stake,
}),
[initStake, signMessage, btcAddress, stake],
[initStake, signMessage, btcAddress, depositReceipt, stake],
)

return (
Expand Down

0 comments on commit 0e72db4

Please sign in to comment.