Bluesky app fork with some witchin' additions 💫

Add missing web component (for native view manager) (#5662)

authored by hailey.at and committed by

GitHub 86b0d3b4 cca344a3

+6 -1
+1 -1
modules/bottom-sheet/src/BottomSheet.web.tsx
··· 1 1 import {BottomSheetViewProps} from './BottomSheet.types' 2 2 3 3 export function BottomSheet(_: BottomSheetViewProps) { 4 - throw new Error('BottomSheetView is not available on web') 4 + throw new Error('BottomSheet is not available on web') 5 5 }
+5
modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx
··· 1 + import {BottomSheetViewProps} from './BottomSheet.types' 2 + 3 + export function BottomSheetNativeComponent(_: BottomSheetViewProps) { 4 + throw new Error('BottomSheetNativeComponent is not available on web') 5 + }