Skip to content

Commit

Permalink
lint fixes, code format, code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
RSMNYS committed Jan 9, 2024
1 parent 4166215 commit 456345b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 3 additions & 0 deletions benchmarks_web_viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@
"extends": [
"react-app",
"react-app/jest"
],
"ignorePatterns": [
"build"
]
},
"browserslist": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@ const LoginPage = () => {
mutate(formData);
};

const onForgotPassword = () => {
// navigate("/forgot-password");
};

const renderErr = (errKey: string) => {
const message = errors[errKey]?.message;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type Props = {

const FiltersForm = ({ onClose }: Props) => {
const { resultFilter, setResultFilter } = useFilters();
const { handleSubmit, control, formState, register, reset, watch } =
const { handleSubmit, control, formState, register, reset } =
useForm<ResultFilterType>({
resolver: yupResolver(schema),
defaultValues: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React from "react";
import ResponsiveMenuHeader from "./ResponsiveMenuHeader";

const MainContentWithHeader = () => {
const { onToggle, isOpen, onClose } = useDisclosure();
const { onToggle, isOpen } = useDisclosure();

return (
<Flex flexDir="column" flexGrow={1} minWidth={0}>
Expand Down

0 comments on commit 456345b

Please sign in to comment.