Skip to content

Commit e9cfc49

Browse files
committed
chore: remove unused a $FlowFixMe comment
1 parent 04d1da2 commit e9cfc49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/scheduler/src/SchedulerProfiling.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const sharedProfilingBuffer = enableProfiling
2424
?
2525
isEnabledSharedArrayBuffer
2626
? new SharedArrayBuffer(profilingStateSize * Int32Array.BYTES_PER_ELEMENT)
27-
: // $FlowFixMe Flow doesn't know about ArrayBuffer
27+
:
2828
typeof ArrayBuffer === 'function'
2929
? new ArrayBuffer(profilingStateSize * Int32Array.BYTES_PER_ELEMENT)
3030
: null // Don't crash the init path on IE9

0 commit comments

Comments
 (0)