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

Configure Feed

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

at bwc9876/pdsls-in-profile 12 lines 277 B view raw
1export function parseAutocompleteItemType(type: string) { 2 switch (type) { 3 case 'mention': 4 return 'profile' 5 case 'tag': 6 return 'tag' 7 case 'emoji': 8 return 'emoji' 9 default: 10 throw new Error(`Unknown autocomplete item type: ${type}`) 11 } 12}