From cd7fbd48c09acabd21bb7a1901f92996fe4ffa45 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Mon, 16 Oct 2023 11:37:50 +0100 Subject: [PATCH] chore: update jsx files --- website/src/playground/PlaygroundLoader.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/src/playground/PlaygroundLoader.tsx b/website/src/playground/PlaygroundLoader.tsx index 46f51ae39936..a2428ba69c6f 100644 --- a/website/src/playground/PlaygroundLoader.tsx +++ b/website/src/playground/PlaygroundLoader.tsx @@ -50,7 +50,7 @@ function PlaygroundLoader() { const workerRef = useRef(null); const prettierWorkerRef = useRef(null); - // biome-ignore lint/nursery/useExhaustiveDependencies: dependencies mismatch + // biome-ignore lint/correctness/useExhaustiveDependencies: dependencies mismatch useEffect(() => { workerRef.current = new Worker( new URL("./workers/biomeWorker", import.meta.url), @@ -122,7 +122,7 @@ function PlaygroundLoader() { }, []); // Dispatch updated settings - // biome-ignore lint/nursery/useExhaustiveDependencies: dependencies mismatch + // biome-ignore lint/correctness/useExhaustiveDependencies: dependencies mismatch useEffect(() => { if (loadingState !== LoadingState.Success) { return; @@ -155,7 +155,7 @@ function PlaygroundLoader() { }, [loadingState, state.settings]); // Dispatch updated code to Prettier - // biome-ignore lint/nursery/useExhaustiveDependencies: dependencies mismatch + // biome-ignore lint/correctness/useExhaustiveDependencies: dependencies mismatch useEffect(() => { if (loadingState !== LoadingState.Success) { return;