rename basket to cart
This commit is contained in:
parent
b579ae3966
commit
1ff5ad6e1f
@ -12,7 +12,7 @@ import Tariffs from "./pages/Tariffs/Tariffs";
|
||||
import SigninDialog from "./pages/auth/Signin";
|
||||
import SignupDialog from "./pages/auth/Signup";
|
||||
import History from "./pages/History";
|
||||
import Basket from "./pages/Basket/Basket";
|
||||
import Cart from "./pages/Cart/Cart";
|
||||
import TariffPage from "./pages/Tariffs/TariffsPage";
|
||||
import SavedTariffs from "./pages/SavedTariffs";
|
||||
import lightTheme from "@utils/themes/light";
|
||||
@ -116,7 +116,7 @@ const App = () => {
|
||||
<Route path="/support" element={<Support />} />
|
||||
<Route path="/support/:ticketId" element={<Support />} />
|
||||
<Route path="/tariffconstructor" element={<TariffConstructor />} />
|
||||
<Route path="/cart" element={<Basket />} />
|
||||
<Route path="/cart" element={<Cart />} />
|
||||
<Route path="/wallet" element={<Wallet />} />
|
||||
<Route path="/payment" element={<Payment />} />
|
||||
<Route path="/settings" element={<AccountSettings />} />
|
||||
|
@ -11,7 +11,7 @@ import TotalPrice from "@components/TotalPrice";
|
||||
import CustomWrapper from "./CustomWrapper";
|
||||
import { useCart } from "@root/utils/hooks/useCart";
|
||||
|
||||
export default function Basket() {
|
||||
export default function Cart() {
|
||||
const theme = useTheme();
|
||||
const upMd = useMediaQuery(theme.breakpoints.up("md"));
|
||||
const cart = useCart();
|
Loading…
Reference in New Issue
Block a user