Skip to content

Commit 8cb5acc

Browse files
authored
small-CSS-and-copy-updates (#5871)
* fix: standardize text casing to improve consistency * Style: Update icon display to flex to ensure proper alignment.
1 parent 857c945 commit 8cb5acc

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

apps/desktop/src/lib/ai/promptService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export class PromptService {
8989
createDefaultUserPrompt(type: 'commits' | 'branches'): UserPrompt {
9090
return {
9191
id: crypto.randomUUID(),
92-
name: 'My Prompt',
92+
name: 'My prompt',
9393
prompt: type === 'branches' ? SHORT_DEFAULT_BRANCH_TEMPLATE : SHORT_DEFAULT_COMMIT_TEMPLATE
9494
};
9595
}

apps/desktop/src/lib/components/AIPromptEdit/AIPromptEdit.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
displayMode="readOnly"
5353
prompt={{
5454
prompt: prompts.defaultPrompt,
55-
name: 'Default Prompt',
55+
name: 'Default prompt',
5656
id: 'default'
5757
}}
5858
/>

apps/desktop/src/lib/components/AIPromptEdit/Content.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@
201201
}
202202
203203
& .icon {
204+
display: flex;
204205
color: var(--clr-text-2);
205206
}
206207
}

0 commit comments

Comments
 (0)