diff --git a/app/presenters/variant_presenter.rb b/app/presenters/variant_presenter.rb deleted file mode 100644 index 0f0da89a60..0000000000 --- a/app/presenters/variant_presenter.rb +++ /dev/null @@ -1,13 +0,0 @@ -class VariantPresenter - attr_accessor :variant - - def initialize(variant) - @variant = variant - end - - delegate :id, to: :variant - - def image_url - @variant.images.first.attachment.url :mini if @variant.images.present? - end -end