diff --git a/server/index.js b/server/index.js index 052dee3..f0abc2c 100644 --- a/server/index.js +++ b/server/index.js @@ -5,7 +5,6 @@ app.use(cors()); app.get("/api/products", (req, res) => { const data = [ - { PID: "N9K-C9372PX", VID: "V03", @@ -33,7 +32,6 @@ app.get("/api/products", (req, res) => { ]; res.status(200).send(data); }); - const PORT = 8000; app.listen(PORT, () => {