Skip to content

Commit

Permalink
chore: update jsx files
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Oct 16, 2023
1 parent 66ae383 commit cd7fbd4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/src/playground/PlaygroundLoader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function PlaygroundLoader() {
const workerRef = useRef<Worker | null>(null);
const prettierWorkerRef = useRef<Worker | null>(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),
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit cd7fbd4

Please sign in to comment.