Skip to content

Commit 45a24d5

Browse files
committed
chore: Fix linting errors
1 parent b7050ef commit 45a24d5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/react/src/data-connect/useDataConnectMutation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import {
55
} from "@tanstack/react-query";
66
import type { FirebaseError } from "firebase/app";
77
import {
8-
CallerSdkType,
8+
type CallerSdkType,
99
CallerSdkTypeEnum,
1010
type DataConnect,
1111
type MutationRef,
1212
type QueryRef,
1313
executeMutation,
1414
} from "firebase/data-connect";
15-
import { type FlattenedMutationResult } from "./types";
15+
import type { FlattenedMutationResult } from "./types";
1616

1717
export type useDataConnectMutationOptions<
1818
TData = unknown,

packages/react/src/data-connect/useDataConnectQuery.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import {
44
type QueryRef,
55
type QueryResult,
66
executeQuery,
7-
CallerSdkType,
8-
CallerSdkTypeEnum
7+
type CallerSdkType,
8+
CallerSdkTypeEnum,
99
} from "firebase/data-connect";
1010
import type { PartialBy } from "../../utils";
11-
import { FlattenedQueryResult } from "./types";
11+
import type { FlattenedQueryResult } from "./types";
1212

1313
export type useDataConnectQueryOptions<
1414
TData = unknown,

0 commit comments

Comments
 (0)