Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Aayush259 committed Aug 1, 2024
1 parent 89f44c5 commit 5aaeaa2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { Suspense, useEffect, useState } from 'react';
import React, { Suspense, useEffect } from 'react';
import Nav from './components/nav/Nav.jsx';
import Loader from './components/Loader.jsx';
import { Outlet } from 'react-router-dom';
Expand Down
4 changes: 2 additions & 2 deletions src/components/account/Account.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { Suspense } from 'react';
import { Outlet } from 'react-router-dom';
import AccountNavLink from './AccountNavLink';
import Loader from '../Loader';
import AccountNavLink from './AccountNavLink.jsx';
import Loader from '../Loader.jsx';

export default function Account() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/products/Products.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useEffect, useState } from 'react';
import ProductCard from './ProductCard';
import ProductCard from './ProductCard.jsx';
import { useParams } from 'react-router-dom';
import { useProducts } from '../../hooks/useStoreItems.js';
import FilterSection from './FilterSection.jsx';
Expand Down

0 comments on commit 5aaeaa2

Please sign in to comment.