Skip to content

Commit

Permalink
OS-189 [FE] Refactoring | Tackle remaining tech debt (#86)
Browse files Browse the repository at this point in the history
* remaining tech debt

* codeFix
  • Loading branch information
Vadim-Kostetskyi authored Jul 29, 2024
1 parent 9bf7f55 commit 32818fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions src/modules/core/components/FooterList/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
.link {
font-size: 14px;
color: $textPrimary;
}

.link:not(:last-child) {
margin-bottom: 24px;
&:not(:last-child) {
margin-bottom: 24px;
}
}
6 changes: 3 additions & 3 deletions src/modules/product/components/ProductInfo/index.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import React, { useState, FC } from 'react';
import { useTranslation } from 'react-i18next';
import ProductInfoParameters from 'modules/product/components/ProductInfoParameters';
import AddToShoppingCartButton from 'modules/core/components/AddToShoppingCartButton';
import ProductPrice from 'modules/product/components/ProductPrice';
import { useAppDispatch, useAppSelector } from 'hooks';
import { Size, Color } from 'types/types';
import {
selectQuantityByProductId,
actions as shoppingCartActions,
} from 'redux/slices/shopping-cart';
import ProductInfoParameters from 'modules/product/components/ProductInfoParameters';
import AddToShoppingCartButton from 'modules/core/components/AddToShoppingCartButton';
import ProductPrice from 'modules/product/components/ProductPrice';
import styles from './index.module.scss';

interface ProductInfo {
Expand Down

0 comments on commit 32818fc

Please sign in to comment.