Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
munyanezaarmel committed Dec 5, 2024
1 parent b3653b7 commit e82666e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/components/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client"
import React, { useState, useMemo } from "react"
import { Input, Card, Typography, Menu, Collapse, Empty,Button } from "antd"
import { Input, Card, Typography, Menu, Collapse, Empty, Button } from "antd"
import ToolMapButton from "./Button"

const { Title, Paragraph } = Typography
Expand Down Expand Up @@ -157,7 +157,7 @@ const EnAccessToolMap = ({ setIsModalOpen }: EnAccessToolMapProps) => {
<Menu.SubMenu
key={category}
title={
<Button className="bg-[#95D5B2] hover:bg-[#2D6A4F]" >
<Button className="bg-[#95D5B2] hover:bg-[#2D6A4F]">
{category}
</Button>
}
Expand Down
2 changes: 0 additions & 2 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,3 @@ body {
.custom-popup {
border: none; /* Remove border from submenu */
}


3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"fix-lint": " npx prettier . --write"
},
"dependencies": {
"antd": "^5.22.0",
Expand Down

0 comments on commit e82666e

Please sign in to comment.