Skip to content

Commit

Permalink
small-CSS-and-copy-updates (#5871)
Browse files Browse the repository at this point in the history
* fix: standardize text casing to improve consistency

* Style: Update icon display to flex to ensure proper alignment.
  • Loading branch information
PavelLaptev authored Dec 25, 2024
1 parent 857c945 commit 8cb5acc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/ai/promptService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class PromptService {
createDefaultUserPrompt(type: 'commits' | 'branches'): UserPrompt {
return {
id: crypto.randomUUID(),
name: 'My Prompt',
name: 'My prompt',
prompt: type === 'branches' ? SHORT_DEFAULT_BRANCH_TEMPLATE : SHORT_DEFAULT_COMMIT_TEMPLATE
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
displayMode="readOnly"
prompt={{
prompt: prompts.defaultPrompt,
name: 'Default Prompt',
name: 'Default prompt',
id: 'default'
}}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@
}
& .icon {
display: flex;
color: var(--clr-text-2);
}
}
Expand Down

0 comments on commit 8cb5acc

Please sign in to comment.