Skip to content

Commit 51341de

Browse files
committed
[Chore] #219 - 경력,활동 컴포넌트에 회사, 직무 위치 수정
1 parent d40382e commit 51341de

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CERTI-iOS/Presentation/Resume/Components/ResumeActivityListComponent.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ struct ResumeActivityListComponent: View {
2020
.foregroundStyle(.grayscale500)
2121
.frame(height: 18)
2222

23-
Text(model.place)
23+
Text(model.name)
2424
.applyCertiFont(.caption_regular_12)
2525
.foregroundStyle(.grayscale500)
2626
.frame(height: 18)
@@ -29,7 +29,7 @@ struct ResumeActivityListComponent: View {
2929
.frame(width: 104, height: 48)
3030

3131
VStack(alignment: .leading, spacing: 0) {
32-
Text(model.name)
32+
Text(model.place)
3333
.applyCertiFont(.body_semibold_16)
3434
.foregroundStyle(.grayscale600)
3535
.frame(width: 137, height: 22, alignment: .leading)

CERTI-iOS/Presentation/Resume/Components/ResumeCareerListComponent.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ struct ResumeCareerListComponent: View {
2121
.foregroundStyle(.grayscale500)
2222
.frame(height: 18)
2323

24-
Text(model.place)
24+
Text(model.name)
2525
.applyCertiFont(.caption_regular_12)
2626
.foregroundStyle(.grayscale500)
2727
.frame(height: 18)
@@ -30,7 +30,7 @@ struct ResumeCareerListComponent: View {
3030
.frame(width: 104, height: 48)
3131

3232
VStack(alignment: .leading, spacing: 0) {
33-
Text(model.name)
33+
Text(model.place)
3434
.applyCertiFont(.body_semibold_16)
3535
.foregroundStyle(.grayscale600)
3636
.frame(width: 137, height: 22, alignment: .leading)

0 commit comments

Comments
 (0)