This repository has no description
0

Configure Feed

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

Update AdvancedContainer.tsx

+20 -18
+20 -18
src/webapp/features/settings/containers/advancedContainer/AdvancedContainer.tsx
··· 75 75 return ( 76 76 <Container p="xs" size="xs"> 77 77 <Stack gap="md"> 78 - <Stack gap={4}> 79 - <Group justify="space-between"> 78 + <Group justify="space-between" wrap="nowrap"> 79 + <Stack gap={4}> 80 80 <Text fw={500}>Tinker mode</Text> 81 - <Switch 82 - size="md" 83 - onLabel="ON" 84 - offLabel="OFF" 85 - withThumbIndicator={false} 86 - checked={settings.tinkerMode} 87 - onChange={(event) => 88 - updateSetting('tinkerMode', event.currentTarget.checked) 89 - } 90 - /> 91 - </Group> 92 - <Text fw={500} c={'gray'} fz={'sm'}> 93 - Reveals raw data structures throughout the app — feed items, cards, 94 - and collections expand to show the underlying AT Protocol records. 95 - </Text> 96 - </Stack> 81 + 82 + <Text fw={500} c={'gray'} fz={'sm'}> 83 + Reveals raw data structures throughout the app — feed items, 84 + cards, and collections expand to show the underlying AT Protocol 85 + records. 86 + </Text> 87 + </Stack> 88 + <Switch 89 + size="md" 90 + onLabel="ON" 91 + offLabel="OFF" 92 + withThumbIndicator={false} 93 + checked={settings.tinkerMode} 94 + onChange={(event) => 95 + updateSetting('tinkerMode', event.currentTarget.checked) 96 + } 97 + /> 98 + </Group> 97 99 98 100 <Card bg={'var(--mantine-color-gray-light)'} radius={'lg'} p="md"> 99 101 <SimpleGrid cols={{ base: 1, sm: 2 }} spacing="md">