Skip to content

Commit

Permalink
Remove log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
smb2268 committed May 3, 2024
1 parent efa3ffd commit 1109317
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions app/src/organisms/QuickTransferFlow/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,7 @@ export const QuickTransferFlow = (): JSX.Element => {
state,
dispatch,
onBack: () => setCurrentStep(prevStep => prevStep - 1),
onNext: () => {
console.log('next step')
setCurrentStep(prevStep => prevStep + 1)
},
onNext: () => setCurrentStep(prevStep => prevStep + 1),
exitButtonProps,
}

Expand Down

0 comments on commit 1109317

Please sign in to comment.