Skip to content

Commit

Permalink
refactor: 애니메이션 사이즈 작게 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
junhee1203 committed Nov 28, 2024
1 parent 71244d2 commit 446021e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/client/src/constants/orderTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ const OrderWaitForm = lazy(

const AuthenticatedBuyForm = withAuthenticate({
WrappedComponent: OrderBuyForm,
size: 'md',
size: 'sm',
});
const AuthenticatedSellForm = withAuthenticate({
WrappedComponent: OrderSellForm,
size: 'md',
size: 'sm',
});
const AuthenticatedWaitForm = withAuthenticate({
WrappedComponent: OrderWaitForm,
size: 'md',
size: 'sm',
});

type CreateOrderTabProsp = {
Expand Down

0 comments on commit 446021e

Please sign in to comment.