Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
RanjithKumarSeekolu committed Jan 24, 2024
1 parent 610c4bf commit ca2db14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Cars/AllCars.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect, useState } from "react";
import { Link } from "react-router-dom";
import apiUrl from "../../utils/constants";
import apiUrl from "../../utils/constants.js";

const AllCars = () => {
const [cars, setCars] = useState([]);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Cars/CategoryCars.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useParams } from "react-router-dom";
import location from "../../assets/location.gif";
import Footer from "../Footer/Footer";
import Shimmer from "../Shimmer/Shimmer";
import apiUrl from "../../utils/constants";
import apiUrl from "../../utils/constants.js";

const CategoryCars = () => {
const { id } = useParams();
Expand Down

0 comments on commit ca2db14

Please sign in to comment.