Skip to content

Commit

Permalink
chore: review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
compojoom committed May 6, 2024
1 parent b704a9e commit 16e3e8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/store/__tests__/swapOrderSlice.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ describe('swapOrderSlice', () => {
title: 'Order executed',
message: 'Your order has been successful',
groupKey: 'swap-order-status',
variant: 'info',
variant: 'success',
})

expect(mockDispatch).toHaveBeenCalledWith(deleteSwapOrder('order1'))
Expand Down
2 changes: 1 addition & 1 deletion src/store/swapOrderSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export const swapOrderStatusListener = (listenerMiddleware: typeof listenerMiddl
title: 'Order executed',
message: 'Your order has been successful',
groupKey,
variant: 'info',
variant: 'success',
}),
)
dispatch(slice.actions.deleteSwapOrder(swapOrder.orderUid))
Expand Down

0 comments on commit 16e3e8a

Please sign in to comment.