This repository has no description
0

Configure Feed

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

Update AdvancedContainer.tsx

+12 -2
+12 -2
src/webapp/features/settings/containers/advancedContainer/AdvancedContainer.tsx
··· 98 98 <Card bg={'var(--mantine-color-gray-light)'} radius={'lg'} p="md"> 99 99 <SimpleGrid cols={{ base: 1, sm: 2 }} spacing="md"> 100 100 <Stack gap="xs"> 101 - <Badge variant="light" color="gray" size="sm" w="fit-content"> 101 + <Badge 102 + variant={!settings.tinkerMode ? 'filled' : 'light'} 103 + color={!settings.tinkerMode ? undefined : 'gray'} 104 + size="sm" 105 + w="fit-content" 106 + > 102 107 Off 103 108 </Badge> 104 109 <Card ··· 118 123 </Stack> 119 124 120 125 <Stack gap="xs"> 121 - <Badge variant="light" color="gray" size="sm" w="fit-content"> 126 + <Badge 127 + variant={settings.tinkerMode ? 'filled' : 'light'} 128 + color={settings.tinkerMode ? undefined : 'gray'} 129 + size="sm" 130 + w="fit-content" 131 + > 122 132 On 123 133 </Badge> 124 134 <Card