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

Configure Feed

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

at 967b3b49d9b0bdbe9c8fd7ea802ecf780b9e1a0c 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}