Skip to content
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
1 change: 1 addition & 0 deletions apps/webapp/app/components/code/TSQLResultsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,7 @@ function ColumnResizeHandle({ header }: { header: Header<RowData, unknown> }) {
}
/* oxlint-enable jsx-a11y/no-static-element-interactions */

// oxlint-disable-next-line react/react-compiler -- TanStack Table is not compatible with compiler memoization.
export const TSQLResultsTable = memo(function TSQLResultsTable({
rows,
columns,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ type InputNumberStepperProps = Omit<JSX.IntrinsicElements["input"], "min" | "max
controlSize?: "base" | "large";
};

// oxlint-disable-next-line react/react-compiler -- The compiler cannot currently rewrite these hoisted function references.
Comment thread
carderne marked this conversation as resolved.
export function InputNumberStepper({
value,
onChange,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ export type UseTreeStateOutput = {
scrollToNode: (id: string) => void;
};

// oxlint-disable-next-line react/react-compiler -- TanStack Virtual is not compatible with compiler memoization.
export function useTree<TData, TFilterValue>({
tree,
selectedId,
Expand Down
1 change: 1 addition & 0 deletions apps/webapp/app/components/scheduled/timezones.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { useVirtualizer } from "@tanstack/react-virtual";
import { useRef } from "react";
import { SelectItem } from "../primitives/Select";

// oxlint-disable-next-line react/react-compiler -- TanStack Virtual is not compatible with compiler memoization.
Comment thread
carderne marked this conversation as resolved.
export function TimezoneList({ timezones }: { timezones: string[] }) {
const parentRef = useRef<HTMLDivElement>(null);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@ function EnvironmentVariableTableRow({
);
}

// oxlint-disable-next-line react/react-compiler -- TanStack Virtual is not compatible with compiler memoization.
function EnvironmentVariablesVirtualTableBody({
groupedEnvironmentVariables,
scrollRef,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ const ROW_NUMBER_COL_MIN_CH = 3;
const TIME_COL_WIDTH = "7rem";
const TYPE_COL_WIDTH = "5rem";

// oxlint-disable-next-line react/react-compiler -- TanStack Virtual is not compatible with compiler memoization.
function RawConversationView({
inResourcePath,
outResourcePath,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ export const loader = async ({ request, params }: LoaderFunctionArgs) => {
);
};

// oxlint-disable-next-line react/react-compiler -- TanStack Virtual is not compatible with compiler memoization.
export function RealtimeStreamViewer({
runId,
streamKey,
Expand Down