We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03a2322 commit f216604Copy full SHA for f216604
1 file changed
src/utils/findNodeHandle/index.ts
@@ -4,7 +4,7 @@ import type { NodeHandle } from 'react-native/Libraries/ReactNative/RendererProx
4
// eslint-disable-next-line @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any
5
function findNodeHandle(componentOrHandle: null | number | Component<any, any> | ComponentClass<any>): null | NodeHandle {
6
// eslint-disable-next-line no-console
7
- console.warn('findNodeHandle is not supported on web. Use the ref property on the component instead.');
+ console.warn('findNodeHandle is not supported on web. Use the ref property of the component instead.');
8
return null;
9
}
10
0 commit comments