1 parent 44e87ad commit a3794feCopy full SHA for a3794fe
1 file changed
src/ui/components/common/FiberMaybeLeak.tsx
@@ -16,7 +16,7 @@ function listOfLeaks(leaked: number) {
16
let bitNum = 0;
17
18
while (leaked >= 1 << bitNum) {
19
- if (leaked | (1 << bitNum)) {
+ if (leaked & (1 << bitNum)) {
20
const title = TrackingObjectTypeName[bitNum as TrackingObjectType];
21
result.push(`${title} (${title[0].toUpperCase()})`);
22
}
0 commit comments