Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix false positive DEV check (#3410)

authored by

dan and committed by
GitHub
575f390d 2e048706

+8
+8
src/platform/polyfills.web.ts
··· 19 19 typeof msgOrError === 'string' && 20 20 msgOrError.startsWith('Unexpected text node') 21 21 ) { 22 + if ( 23 + msgOrError === 24 + 'Unexpected text node: . A text node cannot be a child of a <View>.' 25 + ) { 26 + // This is due to a stray empty string. 27 + // React already handles this fine, so RNW warning is a false positive. Ignore. 28 + return 29 + } 22 30 const err = new Error(msgOrError) 23 31 thrownErrors.add(err) 24 32 throw err