@samitouri / QOS-React / commits / 77b2f909f6

[DevTools] Attempt at a better "unique suspender" text (#34854)

Nobody knows what this terminology means. Also, this tooltip component sucks: <img width="634" height="137" alt="Screenshot 2025-10-15 at 12 04 49 AM" src="https://github.com/user-attachments/assets/a1c33650-7c7d-441f-8f8b-0ea7ebea9351" />

Sebastian Markbåge committed Oct 15, 2025 at 10:26 UTC 77b2f909f6261ec2c5de75dbe76287ec6fead0d0
1 file changed +3 -1
packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseTab.js
+3 -1
@@ -85,7 +85,9 @@ function ToggleUniqueSuspenders() {
85 <Toggle
86 isChecked={uniqueSuspendersOnly}
87 onChange={handleToggleUniqueSuspenders}
88 - title={'Only include boundaries with unique suspenders'}>
88 + title={
89 + 'Filter Suspense which does not suspend, or if the parent also suspend on the same.'
90 + }>
91 <ButtonIcon type={uniqueSuspendersOnly ? 'filter-on' : 'filter-off'} />
92 </Toggle>
93 );