Skip to content
Snippets Groups Projects
Commit c1a7e8cd authored by 정원제's avatar 정원제 :guitar:
Browse files

style: 더 적절한 단어로 교체

parent ff39fee9
No related branches found
No related tags found
No related merge requests found
Pipeline #10850 passed
......@@ -118,7 +118,7 @@ const SearchCombinationPage = () => {
{currentRecommendations.map((combination, index) => (
<CombinationBox
key={indexOfFirstItem + index}
title={`등록이 많은 조합 ${indexOfFirstItem + index + 1}`}
title={`최신 조합 ${indexOfFirstItem + index + 1}`}
combination={combination}
/>
))}
......
......@@ -60,12 +60,12 @@ const SharedCombinationPage = () => {
{combination && sharedInfo && (
<>
<div className="shared-info">
<p>공유자: {sharedInfo.nickname}</p>
<p>인증자: {sharedInfo.nickname}</p>
<p>등록일: {new Date(sharedInfo.created_at).toLocaleDateString()}</p>
<p>공유일: {new Date(sharedInfo.verified_at).toLocaleDateString()}</p>
<p>인증일: {new Date(sharedInfo.verified_at).toLocaleDateString()}</p>
</div>
<CombinationBox
title="공유된 조합"
title="인증된 조합"
combination={combination}
/>
</>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment