Skip to content

Commit

Permalink
rename QNA -> FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed Dec 8, 2024
1 parent 734983d commit 99d666f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import RxRelay
import RxSwift
import Utility

public final class QnaContentViewModel: ViewModelType {
@available(*, deprecated, renamed: "FAQContentViewModel", message: "QnaContentViewModel is deprecated, use FAQContentViewModel instead.")
typealias QnaContentViewModel = FAQContentViewModel

public final class FAQContentViewModel: ViewModelType {
var disposeBag = DisposeBag()
var dataSource: [FaqEntity]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ import DesignSystem
import FaqDomainInterface
import UIKit

class QuestionTableViewCell: UITableViewCell {
@available(*, deprecated, renamed: "FAQTableViewCell", message: "QuestionTableViewCell is deprecated, use FAQTableViewCell instead.")
typealias QuestionTableViewCell = FAQTableViewCell

class FAQTableViewCell: UITableViewCell {
@IBOutlet weak var categoryLabel: UILabel!
@IBOutlet weak var titleLabel: UILabel!
@IBOutlet weak var expandImageView: UIImageView!
Expand Down

0 comments on commit 99d666f

Please sign in to comment.