Skip to content

Commit

Permalink
Merge pull request Yanabada#243 from Yanabada/feature/Yanabada#242
Browse files Browse the repository at this point in the history
Fix: 리액트 훅 에러 수정
  • Loading branch information
wkdtnqls0506 authored Jan 29, 2024
2 parents 34f21f3 + 4b9b620 commit c854343
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/speicialProducts/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import UpperNavBar from "@components/navBar/upperNavBar";
import useProducts from "@pages/products/api/queries";
import Order from "@pages/products/components/Order";
// import Order from "@pages/products/components/Order";
import ProductCard from "@pages/products/components/ProductCard";
import logo from "@assets/2024_dragon.png";
import { ScrollRestoration } from "react-router-dom";
Expand All @@ -22,7 +22,7 @@ const SpecialProducts = () => {
<p>2024년을 시작하는 신년 파티룸</p>
</div>
</S.Wrapper>
<Order />
{/* <Order /> */}
{products.map((product) => (
<ProductCard key={product.id} product={product} />
))}
Expand Down

0 comments on commit c854343

Please sign in to comment.