Skip to content

Commit e2a3bd6

Browse files
committed
fix: the greates bug fixes, nobody fixes bugs like me
1 parent 7688da5 commit e2a3bd6

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

examples/react/a11y-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"test:types": "tsc"
1010
},
1111
"dependencies": {
12-
"@tanstack/devtools-a11y": "^0.0.1",
12+
"@tanstack/devtools-a11y": "workspace:*",
1313
"@tanstack/react-devtools": "^0.9.3",
1414
"react": "^19.2.0",
1515
"react-dom": "^19.2.0"

packages/devtools-a11y/src/core/components/Shell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function Shell() {
3737
<div class={styles().headerTitleRow}>
3838
<h2 class={styles().headerTitle}>Accessibility Audit</h2>
3939

40-
<Show when={filteredIssues()}>
40+
<Show when={allyResult.state === 'done' && filteredIssues()}>
4141
<span class={styles().headerSub}>
4242
{`${allyResult.audit?.issues.length} issue${allyResult.audit?.issues.length !== 1 ? 's' : ''}`}
4343
</span>

packages/devtools-a11y/src/react/A11yDevtools.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createReactPanel } from '@tanstack/devtools-utils/react'
2-
import { A11yDevtoolsCore } from '../core'
2+
import { A11yDevtoolsCore } from '@tanstack/devtools-a11y/core'
33

44
// type
55
import type { DevtoolsPanelProps } from '@tanstack/devtools-utils/react'

packages/devtools-a11y/vite.config.react.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default mergeConfig(
2525
entry: ['./src/react/index.ts', './src/react/production.ts'],
2626
srcDir: './src/react',
2727
outDir: './dist/react',
28-
externalDeps: ['solid-js'],
28+
externalDeps: ['solid-js', '@tanstack/devtools-a11y/core'],
2929
tsconfigPath: './tsconfig.react.json',
3030
cjs: false,
3131
}),

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)