Skip to content

Commit

Permalink
Merge pull request #282 from ODOICHON/design/#280
Browse files Browse the repository at this point in the history
design: ํ‚ค์›Œ๋“œ ๋ณ€๊ฒฝ (๋นˆ์ง‘๊ฑฐ๋ž˜ -> ๋†๊ฐ€๊ฑฐ๋ž˜)
  • Loading branch information
JunJongHun authored Aug 18, 2024
2 parents 22c608a + d466f33 commit 0f33cf9
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/components/Common/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function Footer() {
);
}}
>
๋นˆ์ง‘๊ฑฐ๋ž˜ ์„œ๋น„์Šค ๊ด€๋ จ
๋†๊ฐ€๊ฑฐ๋ž˜ ์„œ๋น„์Šค ๊ด€๋ จ
</button>
</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Common/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function DesktopNavbar({
์˜ค๋„์ด์ดŒ ์†Œ๊ฐœ
</Link>
<Link className={isFocus('trade')} ref={tradeRef} to="/trade">
๋นˆ์ง‘๊ฑฐ๋ž˜
๋†๊ฐ€๊ฑฐ๋ž˜
</Link>
<Link
className={isFocus('community')}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Common/ToggleMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function ToggleMenu() {
alt="close"
/>
<Link to="/introduce">์˜ค๋„์ด์ดŒ ์†Œ๊ฐœ</Link>
<Link to="/trade">๋นˆ์ง‘๊ฑฐ๋ž˜</Link>
<Link to="/trade">๋†๊ฐ€๊ฑฐ๋ž˜</Link>
<Link to="/community/free_board">์ปค๋ฎค๋‹ˆํ‹ฐ</Link>
{token ? <AfterLogin /> : <BeforeLogin />}
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/MyPage/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function MyHomePage() {
<div className={styles.titleContainer}>
<h1>
{user?.nick_name}๋‹˜์˜{' '}
{user?.userType === 'AGENT' ? '๋นˆ์ง‘๊ฑฐ๋ž˜ ํ™œ๋™' : '๋งˆ์ดํŽ˜์ด์ง€'}
{user?.userType === 'AGENT' ? '๋†๊ฐ€๊ฑฐ๋ž˜ ํ™œ๋™' : '๋งˆ์ดํŽ˜์ด์ง€'}
</h1>
</div>
{user?.userType === 'AGENT' ? <AgentInfoCard /> : <InfoCard />}
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Trade/Board/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function TradeBoardPage() {
const ref = useRef<HTMLDivElement>(null);

const handleDeleteButtonClick = async (houseId: number) => {
if (houseId === 0) throw new Error('์—†๋Š” ๋นˆ์ง‘๊ฑฐ๋ž˜ ๊ฒŒ์‹œ๋ฌผ์ž…๋‹ˆ๋‹ค.');
if (houseId === 0) throw new Error('์—†๋Š” ๋†๊ฐ€๊ฑฐ๋ž˜ ๊ฒŒ์‹œ๋ฌผ์ž…๋‹ˆ๋‹ค.');
await DeleteHouseAPI(houseId);
handleToastMessageProps('POST_DELETE_SUCCESS', () => {
handleModalClose();
Expand Down Expand Up @@ -197,7 +197,7 @@ export default function TradeBoardPage() {
<KakaoMapImage address={data?.data.city || ''} />
</section>
<section className={styles.process}>
<span>๋นˆ์ง‘๊ฑฐ๋ž˜ ํ”„๋กœ์„ธ์Šค๊ฐ€ ๊ถ๊ธˆํ•˜์‹ ๊ฐ€์š”?</span>
<span>๋†๊ฐ€๊ฑฐ๋ž˜ ํ”„๋กœ์„ธ์Šค๊ฐ€ ๊ถ๊ธˆํ•˜์‹ ๊ฐ€์š”?</span>
<button
type="button"
onClick={() => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Trade/Process/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function TradeProcessPage() {
<section className={styles.titleContainer}>
<div className={styles.title}>
<h1>์ค‘๊ฐœ ํ”„๋กœ์„ธ์Šค</h1>
<p>๋นˆ์ง‘๊ฑฐ๋ž˜ ๊ฑฑ์ •๋˜์‹œ๋‚˜์š”?</p>
<p>๋†๊ฐ€๊ฑฐ๋ž˜ ๊ฑฑ์ •๋˜์‹œ๋‚˜์š”?</p>
<p>์ฃผ๋ง๋‚ด์ง‘์ด ์ค‘๊ฐœ ํ”„๋กœ์„ธ์Šค๋ฅผ ์ œ์•ˆํ•ฉ๋‹ˆ๋‹ค.</p>
</div>
</section>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Trade/Write/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default function TradeWritePage() {
<p>์ฃผ์˜์‚ฌํ•ญ</p>
<ul>
<li>
์ผ๋ฐ˜ ํšŒ์›์€ ๋งค๋ฌผ ์‹ ์ฒญ ํ›„ ๊ด€๋ฆฌ์ž์˜ ์Šน์ธ ์ดํ›„ ๋นˆ์ง‘๊ฑฐ๋ž˜ ๊ฒŒ์‹œ๋ฌผ ๋‚ด
์ผ๋ฐ˜ ํšŒ์›์€ ๋งค๋ฌผ ์‹ ์ฒญ ํ›„ ๊ด€๋ฆฌ์ž์˜ ์Šน์ธ ์ดํ›„ ๋†๊ฐ€๊ฑฐ๋ž˜ ๊ฒŒ์‹œ๋ฌผ ๋‚ด
๋ฐ˜์˜๋ฉ๋‹ˆ๋‹ค.
</li>
<li>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Trade/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ export default function TradePage() {
>
<section className={styles.titleContainer}>
<div className={styles.title}>
<h1>๋นˆ์ง‘๊ฑฐ๋ž˜</h1>
<h1>๋†๊ฐ€๊ฑฐ๋ž˜</h1>
<pre>
{`์ž์‹ ์˜ ๋นˆ์ง‘์„ ๋“ฑ๋กํ•˜๊ฑฐ๋‚˜ ๋‹ค์–‘ํ•œ ์ง€์—ญ์˜
๋นˆ์ง‘์„ ๊ตฌ๊ฒฝํ•  ์ˆ˜ ์žˆ๋Š” ๊ณต๊ฐ„์ž…๋‹ˆ๋‹ค.`}
์ฃผ๋ง๋†์žฅ ํ† ์ง€๋‚˜ ์‹œ๊ณจ์ง‘์„ ๋“ฑ๋กํ•˜๊ณ 
<br /> ๊ตฌ๊ฒฝํ•  ์ˆ˜ ์žˆ๋Š” ๊ณต๊ฐ„์ž…๋‹ˆ๋‹ค.
</pre>
</div>
</section>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const checkBeforePost = (
return true;
};

// ๋นˆ์ง‘๊ฑฐ๋ž˜ ๊ธ€์“ฐ๊ธฐ ํ•„์ˆ˜ ์ž…๋ ฅ์‚ฌํ•ญ ์ฒดํฌ
// ๋†๊ฐ€๊ฑฐ๋ž˜ ๊ธ€์“ฐ๊ธฐ ํ•„์ˆ˜ ์ž…๋ ฅ์‚ฌํ•ญ ์ฒดํฌ
export const checkBeforeTradePost = (
user: User,
tradeBoardForm: TradeBoardForm,
Expand Down

0 comments on commit 0f33cf9

Please sign in to comment.