Skip to content

Commit aa11d66

Browse files
committed
chore: pr comments
1 parent fab62d7 commit aa11d66

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

examples/react/a11y-devtools/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ import App from './App'
88
createRoot(document.getElementById('root')!).render(
99
<StrictMode>
1010
<App />
11-
<TanStackDevtools plugins={[a11yDevtoolsPlugin()]} />§
11+
<TanStackDevtools plugins={[a11yDevtoolsPlugin()]} />
1212
</StrictMode>,
1313
)

packages/devtools-a11y/package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,17 @@
9797
"vue": ">=3.2.0"
9898
},
9999
"peerDependenciesMeta": {
100+
"preact": {
101+
"optional": true
102+
},
100103
"react": {
101104
"optional": true
105+
},
106+
"solid-js": {
107+
"optional": true
108+
},
109+
"vue": {
110+
"optional": true
102111
}
103112
}
104113
}

packages/devtools-a11y/src/core/contexts/allyContext.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ function useAllyValue() {
3838
)
3939

4040
const triggerAllyScan = async () => {
41+
setAllyResult('state', 'scanning')
4142
setAllyResult({ audit: await runAudit(config), state: 'done' })
4243
}
4344

0 commit comments

Comments
 (0)