Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

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

at main 9 lines 255 B view raw
1import {device, useStorage} from '#/storage' 2 3export function useThreadgateNudged() { 4 const [threadgateNudged = false, setThreadgateNudged] = useStorage(device, [ 5 'threadgateNudged', 6 ]) 7 8 return [threadgateNudged, setThreadgateNudged] as const 9}