Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(tanstackstart-react): linting error in client/index.ts
  • Loading branch information
nikolovlazar committed Feb 18, 2026
commit c56c38ba80a61ce27badf49cf6d5d0aa611f3a93
10 changes: 5 additions & 5 deletions packages/tanstackstart-react/src/client/index.ts
Comment thread
Lms24 marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// import/export got a false positive, and affects most of our index barrel files
// can be removed once following issue is fixed: https://github.com/import-js/eslint-plugin-import/issues/703
/* eslint-disable import/export */
import type { TanStackMiddlewareBase } from "../common/types";
import type { TanStackMiddlewareBase } from '../common/types';

export * from "@sentry/react";
export * from '@sentry/react';

export { init } from "./sdk";
export { init } from './sdk';

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

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