Skip to content

Commit

Permalink
feat: 매물 말머리 대괄호 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sangminlee98 committed Aug 18, 2024
1 parent b97e007 commit f927416
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Trade/Board/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default function TradeBoard({
</div>
<div className={styles.contentsWrapper}>
<h1>
{getHouseName(houseType)} {title}
[{getHouseName(houseType)}] {title}
</h1>
<p>
<strong>위치</strong> : {city}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Trade/Board/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default function TradeBoardPage() {
</li>
</ul>
<h1>
{data?.data.houseType && getHouseName(data?.data.houseType)}{' '}
{data?.data.houseType && `[${getHouseName(data?.data.houseType)}]`}{' '}
{data?.data.title}
</h1>
<div>
Expand Down

0 comments on commit f927416

Please sign in to comment.