Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: lint fixes #6012

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export const FormItemUploadLogoDraggable = ({
const form = Form.useFormInstance();
const fieldValue = Form.useWatch(name, form) as Media | UploadResponse;

// biome-ignore lint/correctness/useExhaustiveDependencies: false positive
const src = useMemo(() => {
if (!fieldValue) return null;

Expand Down
1 change: 0 additions & 1 deletion packages/devtools/src/components/devtools-pin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export const DevtoolsPin = ({
setSelectorActive,
}: Props) => {
return (
// biome-ignore lint/a11y/useKeyWithClickEvents: <explanation>
<div role="button" className="devtools-selector-pin-box" onClick={onClick}>
<DevtoolsIcon />
<DevtoolsSelector
Expand Down
1 change: 0 additions & 1 deletion packages/devtools/src/components/devtools-selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export const DevtoolsSelector = ({

return (
<div style={style}>
{/* biome-ignore lint/a11y/useKeyWithClickEvents: <explanation> */}
<div
role="button"
title="Element Selector"
Expand Down
2 changes: 1 addition & 1 deletion packages/nestjs-query/test/utils/generateFilters.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { generateFilters } from "../../src/utils/index";
import { CrudFilter, LogicalFilter } from "@refinedev/core";
import type { CrudFilter, LogicalFilter } from "@refinedev/core";

describe("generateFilters", () => {
it("should generate filter based on the specified operator", () => {
Expand Down
Loading