File tree Expand file tree Collapse file tree
packages/tanstackstart-react/src/client Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 */
2424export 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 */
3333export const sentryGlobalFunctionMiddleware : TanStackMiddlewareBase = {
34- " ~types" : undefined ,
34+ ' ~types' : undefined ,
3535 options : { } ,
3636} ;
You can’t perform that action at this time.
0 commit comments