Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
aorin committed Nov 22, 2024
1 parent 8f99efc commit 6457d8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/obsPeriod/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {
Backdrop, Fade, Modal, Table, TableBody, TableCell, TableHead, TableRow
Fade, Modal, Table, TableBody, TableCell, TableHead, TableRow
} from "@mui/material";
import { makeStyles } from "@mui/styles";
import React, { useEffect, useState } from "react";
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/setupProxy.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const { createProxyMiddleware } = require('http-proxy-middleware');
const { createProxyMiddleware } = require("http-proxy-middleware");

module.exports = function(app) {
app.use(
'/api',
"/api",
createProxyMiddleware({
target: 'http://localhost:5000/api',
target: "http://localhost:5000/api",
changeOrigin: true,
})
);
Expand Down

0 comments on commit 6457d8c

Please sign in to comment.