Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/app/src/components/settings-memory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export function SettingsMemory(props: { directory?: string }) {
</Show>

<Show when={state.latest?.profileTooLarge}>
<section class="rounded border border-border bg-bg-panel p-3 text-13-regular text-fg-weak">
<section class="rounded border border-border bg-surface-base p-3 text-13-regular text-fg-weak">
{language.t("settings.memory.profileTooLarge")}
</section>
</Show>
Expand All @@ -123,7 +123,7 @@ export function SettingsMemory(props: { directory?: string }) {
</div>
<textarea
data-action="settings-memory-raw"
class="min-h-[360px] w-full rounded border border-border bg-bg-panel p-3 font-mono text-13-regular text-fg-strong"
class="min-h-[360px] w-full rounded-[var(--radius-md)] border border-border-weak bg-surface-base p-3 font-mono text-13-regular text-fg-strong"
Comment thread
Astro-Han marked this conversation as resolved.
value={draft()}
spellcheck={false}
onInput={(event) => setDraft(event.currentTarget.value)}
Expand Down
Loading