Skip to content

Commit

Permalink
[ITDS-73] feat: #56 - 공고리스트/개발칩 숨김처리
Browse files Browse the repository at this point in the history
- 기획변경: 개발칩 숨김처리
  • Loading branch information
wongbingg committed Jan 19, 2025
1 parent 9c5a9f4 commit da34707
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public final class JobCategoryView: UIView {
switch category {
case .all: Analytics.logEvent(GA.전체칩, parameters: nil)
case .design: Analytics.logEvent(GA.디자인칩, parameters: nil)
case .develop: Analytics.logEvent(GA.개발칩, parameters: nil)
// case .develop: Analytics.logEvent(GA.개발칩, parameters: nil)
case .idea: Analytics.logEvent(GA.기획아이디어칩, parameters: nil)
}
return category
Expand Down
4 changes: 2 additions & 2 deletions Targets/DomainLayer/Sources/Entities/ContestCategory.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import UIKit

public enum ContestCategory: String, CaseIterable {
case all = "전체"
case develop = "개발"
// case develop = "개발"
case design = "디자인"
case idea = "기획·아이디어"

public var id: Int {
switch self {
case .all: return 1
case .develop: return 6
// case .develop: return 6
case .design: return 5
case .idea: return 4
}
Expand Down

0 comments on commit da34707

Please sign in to comment.