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

Configure Feed

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

at 162a78e1ae2a4f60d86867d2e29d4b45a1bd29e5 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}