Skip to content

Commit

Permalink
fix: 상품 클래스명 및 파일 이름 변경
Browse files Browse the repository at this point in the history
deploy build 에러를 잡기 위한 변경
  • Loading branch information
changhwan77 authored Feb 21, 2024
1 parent 0435752 commit 111c470
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
class GoodsCard {
class Goods {
final String title;
final double? regularPrice;
final double? discountRate;
final double discountedPrice;

const GoodsCard(
const Goods(
{required this.title,
required this.discountedPrice,
this.discountRate,
Expand Down

0 comments on commit 111c470

Please sign in to comment.