Skip to content

Commit c56c38b

Browse files
committed
fix(tanstackstart-react): linting error in client/index.ts
1 parent ecda7c2 commit c56c38b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • packages/tanstackstart-react/src/client

packages/tanstackstart-react/src/client/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// import/export got a false positive, and affects most of our index barrel files
22
// can be removed once following issue is fixed: https://github.com/import-js/eslint-plugin-import/issues/703
33
/* eslint-disable import/export */
4-
import type { TanStackMiddlewareBase } from "../common/types";
4+
import type { TanStackMiddlewareBase } from '../common/types';
55

6-
export * from "@sentry/react";
6+
export * from '@sentry/react';
77

8-
export { init } from "./sdk";
8+
export { init } from './sdk';
99

1010
/**
1111
* No-op stub for client-side builds.
@@ -22,7 +22,7 @@ export function wrapMiddlewaresWithSentry<T extends TanStackMiddlewareBase>(
2222
* The actual implementation is server-only, but this stub is needed to prevent rendering errors.
2323
*/
2424
export const sentryGlobalRequestMiddleware: TanStackMiddlewareBase = {
25-
"~types": undefined,
25+
'~types': undefined,
2626
options: {},
2727
};
2828

@@ -31,6 +31,6 @@ export const sentryGlobalRequestMiddleware: TanStackMiddlewareBase = {
3131
* The actual implementation is server-only, but this stub is needed to prevent rendering errors.
3232
*/
3333
export const sentryGlobalFunctionMiddleware: TanStackMiddlewareBase = {
34-
"~types": undefined,
34+
'~types': undefined,
3535
options: {},
3636
};

0 commit comments

Comments
 (0)