diff --git a/CDS-APP-2-iOS/Presentation/HatDetail/cell/ProductInfo/ProductInfoFooterCollectionReusableView.swift b/CDS-APP-2-iOS/Presentation/HatDetail/cell/ProductInfo/ProductInfoFooterCollectionReusableView.swift deleted file mode 100644 index 64616d6..0000000 --- a/CDS-APP-2-iOS/Presentation/HatDetail/cell/ProductInfo/ProductInfoFooterCollectionReusableView.swift +++ /dev/null @@ -1,25 +0,0 @@ -// -// ProductInfoFooterCollectionReusableView.swift -// CDS-APP-2-iOS -// -// Created by Gahyun Kim on 2023/11/22. -// - -import UIKit - -final class ProductInfoFooterCollectionReusableView: UICollectionReusableView { - - override init(frame: CGRect) { - super.init(frame: frame) - } - - required init?(coder: NSCoder) { - super.init(coder: coder) - } - - - func configure() { - backgroundColor = .clear - } - -} diff --git a/CDS-APP-2-iOS/Presentation/HatDetail/cell/SizeInfo/SizeInfoFooterCollectionReusableView.swift b/CDS-APP-2-iOS/Presentation/HatDetail/cell/SizeInfo/SizeInfoFooterCollectionReusableView.swift deleted file mode 100644 index 45950be..0000000 --- a/CDS-APP-2-iOS/Presentation/HatDetail/cell/SizeInfo/SizeInfoFooterCollectionReusableView.swift +++ /dev/null @@ -1,25 +0,0 @@ -// -// SizeInfoFooterCollectionReusableView.swift -// CDS-APP-2-iOS -// -// Created by Gahyun Kim on 2023/11/27. -// - -import UIKit - -class SizeInfoFooterCollectionReusableView: UICollectionReusableView { - - override init(frame: CGRect) { - super.init(frame: frame) - } - - required init?(coder: NSCoder) { - super.init(coder: coder) - } - - - func configure() { - backgroundColor = .clear - } - -}