Skip to content

Commit 5d38ccc

Browse files
committed
Make CC experimental setting public
1 parent 28e4047 commit 5d38ccc

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

apps/desktop/src/components/profileSettings/ExperimentalSettings.svelte

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
/>
5252
{/snippet}
5353
</SectionCard>
54-
<SectionCard labelFor="rules" roundedTop={false} orientation="row">
54+
<SectionCard labelFor="rules" roundedTop={false} roundedBottom={false} orientation="row">
5555
{#snippet title()}
5656
Workspace Rules
5757
{/snippet}
@@ -68,6 +68,21 @@
6868
/>
6969
{/snippet}
7070
</SectionCard>
71+
<SectionCard labelFor="codegen" roundedTop={false} orientation="row">
72+
{#snippet title()}
73+
Codegen (Claude Code)
74+
{/snippet}
75+
{#snippet caption()}
76+
Enable AI-powered code generation and editing with Claude.
77+
{/snippet}
78+
{#snippet actions()}
79+
<Toggle
80+
id="codegen"
81+
checked={$codegenEnabled}
82+
onclick={() => ($codegenEnabled = !$codegenEnabled)}
83+
/>
84+
{/snippet}
85+
</SectionCard>
7186

7287
{#if $user?.role === 'admin'}
7388
<Spacer margin={20} />
@@ -114,22 +129,6 @@
114129
{/snippet}
115130
</SectionCard>
116131

117-
<SectionCard labelFor="codegen" roundedTop={false} roundedBottom={false} orientation="row">
118-
{#snippet title()}
119-
Codegen (Claude Code)
120-
{/snippet}
121-
{#snippet caption()}
122-
Enable AI-powered code generation and editing with Claude.
123-
{/snippet}
124-
{#snippet actions()}
125-
<Toggle
126-
id="codegen"
127-
checked={$codegenEnabled}
128-
onclick={() => ($codegenEnabled = !$codegenEnabled)}
129-
/>
130-
{/snippet}
131-
</SectionCard>
132-
133132
<SectionCard labelFor="irc" roundedTop={false} roundedBottom={!$ircEnabled} orientation="row">
134133
{#snippet title()}
135134
IRC

0 commit comments

Comments
 (0)