Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
geeky-abhishek committed Apr 1, 2024
1 parent e925854 commit a411c5b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/components/sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import ListItem from "@mui/material/ListItem";
import ListItemButton from "@mui/material/ListItemButton";
import ListItemIcon from "@mui/material/ListItemIcon";
import ListItemText from "@mui/material/ListItemText";
import InboxIcon from "@mui/icons-material/MoveToInbox";
import MailIcon from "@mui/icons-material/Mail";
import { FC } from "react";
import { pages } from "../../molecules/index.json";
import { Link } from "@mui/material";
Expand Down
1 change: 1 addition & 0 deletions src/molecules/feedback-page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ const FeedbackPage: React.FC = () => {
max={config.component.ratingMaxStars}

onChange={(event, newValue) => {
console.log(event)
setStar(() => {
return newValue === null ? 1 : newValue;
});
Expand Down
3 changes: 1 addition & 2 deletions src/pages/login-mobile-aadhar-page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ import logo from './assets/logo.png';
import CircularProgress from '@mui/material/CircularProgress';
import { toast } from 'react-hot-toast';
import config from './config.json';
import { useColorPalates } from '../../molecules/theme-provider/hooks';

const LoginMobileAadharPage: React.FC = () => {
const [isAadharClicked, setIsAadharClicked] = useState(false);
const [input, setInput] = useState('');
const [valid, setValid] = useState(true);
const [errorMessage, setErrorMessage] = useState('');
const [loading, setLoading] = useState(false);
const theme = useColorPalates();

const handleInput = useCallback(
(e: React.ChangeEvent<HTMLInputElement>) => {
let reg;
Expand Down

0 comments on commit a411c5b

Please sign in to comment.