Skip to content

Commit a0b397c

Browse files
committed
Fixed lint
1 parent d9fe74f commit a0b397c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

packages/query-devtools/src/Devtools.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import {
5151
XCircle,
5252
} from './icons'
5353
import Explorer from './Explorer'
54-
import { usePiPWindow, useQueryDevtoolsContext, useTheme, DevtoolsStateContext, useDevtoolsState, type QueryCacheMap, type MutationCacheMap } from './contexts'
54+
import { DevtoolsStateContext, useDevtoolsState, usePiPWindow, useQueryDevtoolsContext, useTheme } from './contexts'
5555
import {
5656
BUTTON_POSITION,
5757
DEFAULT_HEIGHT,
@@ -68,6 +68,8 @@ import {
6868
import type {
6969
DevtoolsErrorType,
7070
DevtoolsPosition,
71+
MutationCacheMap,
72+
QueryCacheMap,
7173
QueryDevtoolsProps,
7274
} from './contexts'
7375
import type {

packages/query-devtools/src/DevtoolsPanelComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ContentView, ParentPanel } from './Devtools'
44
import { getPreferredColorScheme } from './utils'
55
import { THEME_PREFERENCE } from './constants'
66
import { DevtoolsStateContext, PiPProvider, QueryDevtoolsContext, ThemeContext } from './contexts'
7-
import type { Theme, QueryCacheMap, MutationCacheMap } from './contexts'
7+
import type { MutationCacheMap, QueryCacheMap, Theme } from './contexts'
88
import type { DevtoolsComponentType } from './Devtools'
99

1010
const DevtoolsPanelComponent: DevtoolsComponentType = (props) => {

packages/query-devtools/src/contexts/DevtoolsStateContext.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { Accessor, createContext, Setter, useContext } from "solid-js"
1+
import { createContext, useContext } from "solid-js"
2+
import type { Accessor, Setter } from "solid-js"
23
import type { MutationCache, QueryCache, QueryCacheNotifyEvent } from "@tanstack/query-core"
34

45
export type QueryCacheMapValue = {

0 commit comments

Comments
 (0)