Skip to content

Commit cb96d6e

Browse files
authored
Merge pull request #1659 from w3c/development
Create December 11, 2025 Release [2] Includes the following changes: * #1658
2 parents fe0a763 + d065352 commit cb96d6e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

client/routes/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,11 @@ export default () => (
174174
<Route
175175
exact
176176
path="/aria-html-feature/:atId/:browserId/:refId/:refType"
177-
element={<AriaHtmlFeatureDetailReport />}
177+
element={
178+
<Suspense fallback={<PageLoader />}>
179+
<AriaHtmlFeatureDetailReport />
180+
</Suspense>
181+
}
178182
/>
179183
<Route
180184
exact

0 commit comments

Comments
 (0)