Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fixes Hotkeys causing native to crash immediately on start (#10180)

authored by

RetroSunstar and committed by
GitHub
165dd5a7 84b026ef

+12
+12
src/lib/hotkeys/index.native.tsx
··· 1 + import React from 'react' 2 + 3 + export function Provider({children}: React.PropsWithChildren<unknown>) { 4 + return <>{children}</> 5 + } 6 + 7 + export function useHotkeysContext() { 8 + return { 9 + enableScope: () => {}, 10 + disableScope: () => {}, 11 + } 12 + }