Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Add back Constellation Instance setting (oops, is this actually used?)

xan.lol ac792160 d5e7b489

+21
+21
src/screens/Settings/DeerSettings.tsx
··· 445 445 /> 446 446 </SettingsList.Item> 447 447 448 + <SettingsList.Item> 449 + <SettingsList.ItemIcon icon={StarIcon} /> 450 + <SettingsList.ItemText> 451 + <Trans>{`Constellation Instance`}</Trans> 452 + </SettingsList.ItemText> 453 + <SettingsList.BadgeButton 454 + label={_(msg`Change`)} 455 + onPress={() => setConstellationInstanceControl.open()} 456 + /> 457 + </SettingsList.Item> 458 + <SettingsList.Item> 459 + <Admonition type="info" style={[a.flex_1]}> 460 + <Trans> 461 + Constellation is used to supplement AppView responses for custom 462 + verifications and nuclear block bypass, via backlinks. Current 463 + instance: {constellationInstance} 464 + </Trans> 465 + </Admonition> 466 + </SettingsList.Item> 467 + 448 468 <SettingsList.Group contentContainerStyle={[a.gap_sm]}> 449 469 <SettingsList.ItemIcon icon={PaintRollerIcon} /> 450 470 <SettingsList.ItemText> ··· 723 743 </SettingsList.Item> 724 744 </SettingsList.Container> 725 745 </Layout.Content> 746 + <ConstellationInstanceDialog control={setConstellationInstanceControl} /> 726 747 <TrustedVerifiersDialog control={setTrustedVerifiersDialogControl} /> 727 748 </Layout.Screen> 728 749 )