Skip to content

Commit

Permalink
chore: removed material icons package (#2518)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaryan610 authored Oct 23, 2023
1 parent 38421e8 commit edc5a38
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 20 deletions.
14 changes: 3 additions & 11 deletions space/components/issues/peek-overview/header.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import React from "react";

// mobx
import { observer } from "mobx-react-lite";
// headless ui
import { Listbox, Transition } from "@headlessui/react";
import { MoveRight } from "lucide-react";
// hooks
import useToast from "hooks/use-toast";
// ui
import { Icon } from "components/ui";
// icons
import { East } from "@mui/icons-material";
// helpers
import { copyTextToClipboard } from "helpers/string.helper";
// store
Expand Down Expand Up @@ -44,7 +40,7 @@ const peekModes: {
];

export const PeekOverviewHeader: React.FC<Props> = observer((props) => {
const { handleClose, issueDetails } = props;
const { handleClose } = props;

const { issueDetails: issueDetailStore }: RootStore = useMobxStore();

Expand All @@ -68,11 +64,7 @@ export const PeekOverviewHeader: React.FC<Props> = observer((props) => {
<div className="flex items-center gap-4">
{issueDetailStore.peekMode === "side" && (
<button type="button" onClick={handleClose}>
<East
sx={{
fontSize: "14px",
}}
/>
<MoveRight className="h-3.5 w-3.5" strokeWidth={2} />
</button>
)}
<Listbox
Expand Down
1 change: 0 additions & 1 deletion space/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.13",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.1",
"@plane/rich-text-editor": "*",
"axios": "^1.3.4",
Expand Down
1 change: 0 additions & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"@headlessui/react": "^1.7.3",
"@hello-pangea/dnd": "^16.3.0",
"@jitsu/nextjs": "^3.1.5",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.1",
"@nivo/bar": "0.80.0",
"@nivo/calendar": "0.80.0",
Expand Down
7 changes: 0 additions & 7 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1539,13 +1539,6 @@
resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-5.14.10.tgz#32a8581be98344bbda5ed31fc7b41788bd2e3bc5"
integrity sha512-kPHu/NhZq1k+vSZR5wq3AyUfD4bnfWAeuKpps0+8PS7ZHQ2Lyv1cXJh+PlFdCIOa0PK98rk3JPwMzS8BMhdHwQ==

"@mui/icons-material@^5.14.1":
version "5.14.9"
resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.14.9.tgz#433cf03c214ce38e1b7a6f684769491fd99c5ef5"
integrity sha512-xTRQbDsogsJo7tY5Og8R9zbuG2q+KIPVIM6JQoKxtJlz9DPOw1u0T2fGrvwD+XAOVifQf6epNMcGCDLfJAz4Nw==
dependencies:
"@babel/runtime" "^7.22.15"

"@mui/material@^5.14.1":
version "5.14.10"
resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.14.10.tgz#b8c6ba17c25c0df54053cb0f1bb35083bc91dace"
Expand Down

0 comments on commit edc5a38

Please sign in to comment.