Skip to content

Commit

Permalink
убрал комменты
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-k88 committed May 30, 2024
1 parent 711a486 commit f612b4b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/pages/AccountPage/AccountPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export const AccountPage: FC = () => {
<div className={styles.accountPage__container}>
{isScreenLg ? <SideBarMenu /> : <SideBarButton onClick={handleClick} />}
<div className={styles.accountPage__contentContainer}>
{/* {isScreenLg && <Heading>Обзор</Heading>} */}
<div className={styles.accountPage__dataGrid}>
<div className={styles.accountPage__leftSide}>
<LastOrder />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ interface IAccountCartCardProps {
*/
export const AccountCartCard: FC<IAccountCartCardProps> = ({ product }) => {
const [isInCompared, setIsInCompared] = useState<boolean>(false)
/* const { isInCart, handleAddToCart } = useProductInCart(product.slug, product.id) */
const { isLiked, handleLike } = useWithFavorite(product)

const handleAddToCompared = () => {
Expand Down

0 comments on commit f612b4b

Please sign in to comment.