diff --git a/src/components/Vehicles.js b/src/components/Vehicles.js
index 6d8a2e4..8e4322a 100644
--- a/src/components/Vehicles.js
+++ b/src/components/Vehicles.js
@@ -30,7 +30,6 @@ const Vehicles = () => {
const handleIdInput = (e) => setVehId(e.target.value);
const handleChange = (e) => {
- console.log(e);
setInputs((prevState) => ({
...prevState,
[e.target.name]: e.target.value,
@@ -95,7 +94,6 @@ const Vehicles = () => {
async function addData(e) {
e.preventDefault();
//format(e);
- console.log("inpiuts", inputs);
setSavedVehicles([...savedVehicles, inputs]);
try {
const docRef = await addDoc(collection(db, "hdepot"), inputs);
diff --git a/src/index.js b/src/index.js
index 17d0e53..c9a13b1 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,18 +1,8 @@
-import React from 'react';
-import ReactDOM from 'react-dom/client';
-import './index.css';
-import App from './App';
-import reportWebVitals from './reportWebVitals';
+import React from "react";
+import ReactDOM from "react-dom/client";
+import "./index.css";
+import App from "./App";
+import reportWebVitals from "./reportWebVitals";
-
-const root = ReactDOM.createRoot(document.getElementById('root'));
-root.render(
-
-
-
-);
-
-// If you want to start measuring performance in your app, pass a function
-// to log results (for example: reportWebVitals(console.log))
-// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
-reportWebVitals();
+const root = ReactDOM.createRoot(document.getElementById("root"));
+root.render();