Open Issues Need Help
View All on GitHubAI Summary: This issue proposes removing the `useTooltipVisible` private hook from the codebase. It is no longer used anywhere and can be safely deleted.
AI Summary: This issue proposes a refactoring task to move the file `types/utils.ts` to `utils/types.ts`. The goal is to resolve an inconsistency in the project's `utils` file structure, aiming for better organization. It is labeled as a good first issue.
AI Summary: The issue proposes adding a new Higher-Order Component (HOC) named `withPlatform`. This new HOC is intended to provide platform-specific functionality or data, similar to the existing `withMobile` HOC, but for a broader range of platforms.
AI Summary: This issue requests adding the `'use client'` directive to the `DisclosureSummary` component. This change is necessary to ensure the component is rendered on the client side, likely within a React framework that supports Server Components. It is labeled as a 'good first issue'.
AI Summary: This issue requests adding the `'use client'` directive to the `Accordion`, `AccordionSummary`, and `AccordionDetails` component files. This is a straightforward code modification to ensure these components are rendered on the client side, as indicated by the 'good first issue' label.
AI Summary: This GitHub issue reports a type error within the `NumericArrowsProps` interface of the `NumberInput` component. It specifies that the `Element` type currently used is incorrect and should be updated to `React.HTMLAttributes<HTMLDivElement>` for proper type definition.
AI Summary: This issue proposes removing a `@ts-expect-error` comment in `Menu.tsx` at line 272. The suggested solution is to replace the current workaround with the nullish coalescing operator, indicating a cleaner way to handle a potential `null` or `undefined` value.
AI Summary: This issue proposes adding a `style` prop to the `Icon` component, complementing the existing `className` prop. The suggested solution involves extending `IconProps` from `DOMProps` to inherit the `style` property.