We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8904c2 commit 2b53d3cCopy full SHA for 2b53d3c
1 file changed
apps/code/src/renderer/features/sessions/hooks/useChatTitleGenerator.ts
@@ -65,20 +65,12 @@ export function useChatTitleGenerator(taskId: string): void {
65
66
const run = async () => {
67
try {
68
- if (getCachedTask(taskId)?.title_manually_set) {
69
- log.debug("Skipping auto-title, user renamed task", { taskId });
70
- return;
71
- }
72
-
73
const result = await generateTitleAndSummary(content);
74
if (result) {
75
const { title, summary } = result;
76
if (title) {
77
if (getCachedTask(taskId)?.title_manually_set) {
78
- log.debug(
79
- "Skipping auto-title, user renamed task during generation",
80
- { taskId },
81
- );
+ log.debug("Skipping auto-title, user renamed task", { taskId });
82
return;
83
}
84
const client = await getAuthenticatedClient();
0 commit comments