alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Update AdvancedContainer.tsx
author
Pouria Delfanazari
date
2 months ago
(May 6, 2026, 3:17 PM -0700)
commit
99b77865
99b77865c75f07f906be90a16a72de65c2f2e252
parent
e65fc34d
e65fc34dd57b1e697f7f28201ec182b2e85a23ef
+20
-18
1 changed file
Expand all
Collapse all
Unified
Split
src
webapp
features
settings
containers
advancedContainer
AdvancedContainer.tsx
+20
-18
src/webapp/features/settings/containers/advancedContainer/AdvancedContainer.tsx
View file
Reviewed
···
75
75
return (
76
76
<Container p="xs" size="xs">
77
77
<Stack gap="md">
78
78
-
<Stack gap={4}>
79
79
-
<Group justify="space-between">
78
78
+
<Group justify="space-between" wrap="nowrap">
79
79
+
<Stack gap={4}>
80
80
<Text fw={500}>Tinker mode</Text>
81
81
-
<Switch
82
82
-
size="md"
83
83
-
onLabel="ON"
84
84
-
offLabel="OFF"
85
85
-
withThumbIndicator={false}
86
86
-
checked={settings.tinkerMode}
87
87
-
onChange={(event) =>
88
88
-
updateSetting('tinkerMode', event.currentTarget.checked)
89
89
-
}
90
90
-
/>
91
91
-
</Group>
92
92
-
<Text fw={500} c={'gray'} fz={'sm'}>
93
93
-
Reveals raw data structures throughout the app — feed items, cards,
94
94
-
and collections expand to show the underlying AT Protocol records.
95
95
-
</Text>
96
96
-
</Stack>
81
81
+
82
82
+
<Text fw={500} c={'gray'} fz={'sm'}>
83
83
+
Reveals raw data structures throughout the app — feed items,
84
84
+
cards, and collections expand to show the underlying AT Protocol
85
85
+
records.
86
86
+
</Text>
87
87
+
</Stack>
88
88
+
<Switch
89
89
+
size="md"
90
90
+
onLabel="ON"
91
91
+
offLabel="OFF"
92
92
+
withThumbIndicator={false}
93
93
+
checked={settings.tinkerMode}
94
94
+
onChange={(event) =>
95
95
+
updateSetting('tinkerMode', event.currentTarget.checked)
96
96
+
}
97
97
+
/>
98
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">