From 4ce79a1bf15692a5b112aa4513b4d69c8ce174b6 Mon Sep 17 00:00:00 2001 From: Roshan Piyush Date: Mon, 18 Nov 2024 21:52:44 +0530 Subject: [PATCH] Lint --- services/web/src/components/navBar/navBar.tsx | 38 ++++++++++++++----- 1 file changed, 29 insertions(+), 9 deletions(-) diff --git a/services/web/src/components/navBar/navBar.tsx b/services/web/src/components/navBar/navBar.tsx index 5f4e4862..39b95e46 100644 --- a/services/web/src/components/navBar/navBar.tsx +++ b/services/web/src/components/navBar/navBar.tsx @@ -16,10 +16,15 @@ import "./nav.css"; import { Button, Dropdown, Menu, Avatar, Layout, Space } from "antd"; -import { LogoutOutlined, EditOutlined, ProfileOutlined, CaretDownOutlined } from "@ant-design/icons"; +import { + LogoutOutlined, + EditOutlined, + ProfileOutlined, + CaretDownOutlined, +} from "@ant-design/icons"; import React from "react"; import roleTypes from "../../constants/roleTypes"; -import type { MenuProps } from 'antd'; +import type { MenuProps } from "antd"; import { useNavigate } from "react-router-dom"; import { connect, ConnectedProps } from "react-redux"; import { logOutUserAction } from "../../actions/userActions"; @@ -68,9 +73,9 @@ const Navbar: React.FC = (props) => { else if (input.key === "forum") navigate(`/forum`); }; - type MenuItem = Required['items'][number]; + type MenuItem = Required["items"][number]; - const menuitems: MenuItem[] = [] + const menuitems: MenuItem[] = []; menuitems.push({ key: "dashboard", label: "Dashboard" }); if (role !== roleTypes.ROLE_MECHANIC) { menuitems.push({ key: "shop", label: "Shop" }); @@ -86,11 +91,26 @@ const Navbar: React.FC = (props) => { /> ); - const sideMenuItems: MenuProps['items'] = [ - { key: "profile", label: "My Profile", onClick: () => navigate("/my-profile"), icon: }, - { key: "password", label: "Change Password", onClick: () => navigate("/reset-password"), icon: }, - { key: "logout", label: "Logout", onClick: logout, icon: }, - ] + const sideMenuItems: MenuProps["items"] = [ + { + key: "profile", + label: "My Profile", + onClick: () => navigate("/my-profile"), + icon: , + }, + { + key: "password", + label: "Change Password", + onClick: () => navigate("/reset-password"), + icon: , + }, + { + key: "logout", + label: "Logout", + onClick: logout, + icon: , + }, + ]; return (