Skip to content

Commit

Permalink
Merge pull request #289 from ODOICHON/feat/#288
Browse files Browse the repository at this point in the history
feat: ๊ณต์ธ์ค‘๊ฐœ์‚ฌ ์ƒ์„ธ ์„ค๋ช… ํƒ€์ž… ์ถ”๊ฐ€
  • Loading branch information
JunJongHun authored Aug 18, 2024
2 parents 011d6e4 + c82b4f7 commit c2a1894
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/pages/Trade/Write/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export default function TradeWritePage() {
price: state ? state.data.price : 0,
monthlyPrice: state ? state.data.monthlyPrice : 0,
agentName: state ? state.data.agentName : '',
agentDetail: state ? state.data.agentDetail : '',
title: state ? state.data.title : '',
code: state ? state.data.code : '',
imageUrls: state ? state.data.imageUrls : [],
Expand Down
2 changes: 2 additions & 0 deletions src/types/Board/tradeType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export type TradeBoardForm = {
price: number;
monthlyPrice: number;
agentName: string;
agentDetail: string;
title: string;
code: string;
imageUrls: string[];
Expand Down Expand Up @@ -67,6 +68,7 @@ export type TradeBoardDetailType = {
price: number;
monthlyPrice: number;
agentName: string;
agentDetail: string;
title: string;
code: string;
imageUrls: string[];
Expand Down

0 comments on commit c2a1894

Please sign in to comment.