[WEB-5732] style: update work item detail properties UI (#8357)

This commit is contained in:
Aaryan Khandelwal 2025-12-17 17:52:54 +05:30 committed by GitHub
parent 61db42bcb7
commit dbda7504b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 170 additions and 136 deletions

View file

@ -1,6 +1,5 @@
import type { ReactNode } from "react";
import { Fragment, useRef, useState } from "react";
import { useTheme } from "next-themes";
import { useRef, useState } from "react";
import { usePopper } from "react-popper";
import { Check, Search, SignalHigh } from "lucide-react";
import { Combobox } from "@headlessui/react";
@ -341,10 +340,6 @@ export function PriorityDropdown(props: Props) {
],
});
// next-themes
// TODO: remove this after new theming implementation
const { resolvedTheme } = useTheme();
const options = ISSUE_PRIORITIES.map((priority) => ({
value: priority.key,
query: priority.key,