@@ -99,7 +99,7 @@ const QUESTIONS: Question[] = [
9999 id : 6 ,
100100 axis : 'PS' ,
101101 prompt : '마감이 다가오면?' ,
102- options : { A : '사전 완료 중심 진행 ' , B : '마감 임박 집중 스퍼트 ' }
102+ options : { A : '이미 대부분 끝나 있음 ' , B : '그 때부터 몰아서 속도 냄 ' }
103103 } ,
104104 {
105105 id : 7 ,
@@ -751,7 +751,9 @@ function ShortResultPreviewHtml({ type, profile }: { type: string; profile: Resu
751751 < div className = "flex h-full flex-col items-center justify-between pb-[75px]" >
752752 < div className = "flex w-full flex-col items-center gap-6" >
753753 < div className = "flex flex-col items-center gap-4" >
754- < p className = "typo-m-b3 rounded-[400px] bg-[#fafafa] px-8 py-1 text-[#666]" > 나의 개발 유형은...</ p >
754+ < p className = "typo-m-b3 rounded-[400px] bg-[#fafafa] px-8 py-1 text-[#666]" >
755+ 나의 개발 유형은...
756+ </ p >
755757 < img
756758 src = { illustrationSrc }
757759 alt = { `${ type } 이미지` }
@@ -1068,25 +1070,19 @@ export default function MbtiEventPage() {
10681070 }
10691071
10701072 router . back ( )
1071- } , [
1072- isPolicyModalOpen ,
1073- isShortPreviewOpen ,
1074- stage ,
1075- allResultsEntryStage ,
1076- answers ,
1077- router
1078- ] )
1073+ } , [ isPolicyModalOpen , isShortPreviewOpen , stage , allResultsEntryStage , answers , router ] )
10791074
10801075 return (
10811076 < main className = "min-h-screen bg-white text-black" >
10821077 < HeaderWithBack
10831078 onBack = { handleBack }
1084- backgroundClassName = { stage === 'allResults' || stage === 'allResultDetail' ? 'bg-[#f0f0f0]' : 'bg-white' }
1079+ backgroundClassName = {
1080+ stage === 'allResults' || stage === 'allResultDetail' ? 'bg-[#f0f0f0]' : 'bg-white'
1081+ }
10851082 showBack = { stage !== 'main' }
10861083 />
10871084
10881085 < section className = "mx-auto min-h-[calc(100vh-56px)] w-full max-w-[375px] bg-white" >
1089-
10901086 { stage === 'main' ? (
10911087 < >
10921088 < div className = "px-4 pb-8 pt-10" >
@@ -1287,7 +1283,8 @@ export default function MbtiEventPage() {
12871283 </ p >
12881284 </ div >
12891285 < p className = "text-xs font-medium leading-[18px] text-[#1e1e1e]" >
1290- 👉 추천: { short ?. recommendation ?? profile . projects [ 0 ] ?. name ?? '프로젝트 참여' }
1286+ 👉 추천:{ ' ' }
1287+ { short ?. recommendation ?? profile . projects [ 0 ] ?. name ?? '프로젝트 참여' }
12911288 </ p >
12921289 </ div >
12931290 </ div >
@@ -1329,7 +1326,9 @@ export default function MbtiEventPage() {
13291326
13301327 < div className = "mt-10 space-y-6" >
13311328 < section >
1332- < p className = "mb-2 pl-2 text-base font-bold leading-6 text-black" > 당신은 이런 유형입니다</ p >
1329+ < p className = "mb-2 pl-2 text-base font-bold leading-6 text-black" >
1330+ 당신은 이런 유형입니다
1331+ </ p >
13331332 < div className = "rounded-lg border border-gray-700 bg-[#fafafa] p-4" >
13341333 < div className = "space-y-2" >
13351334 { allResultDetail . profile . overview . map ( ( line ) => (
@@ -1355,7 +1354,9 @@ export default function MbtiEventPage() {
13551354 </ section >
13561355
13571356 < section >
1358- < p className = "mb-2 pl-2 text-base font-bold leading-6 text-black" > 이런 팀원과 잘 어울려요</ p >
1357+ < p className = "mb-2 pl-2 text-base font-bold leading-6 text-black" >
1358+ 이런 팀원과 잘 어울려요
1359+ </ p >
13591360 < div className = "grid grid-cols-3 gap-2" >
13601361 { allResultDetail . profile . teammates . map ( ( code ) => {
13611362 const typeMeta = MBTI_BY_TAG [ code ] ?. meta ?? TYPE_META [ code ]
0 commit comments