Skip to content

Commit fb49873

Browse files
committed
chore: remove debug text on tooltips
1 parent d4ffd80 commit fb49873

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

composables/joiCompletionSource.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,7 @@ export const joiCompletionSource = async (context: CompletionContext, version: s
105105
return null;
106106
}
107107

108-
const doc = `${entry.kind} ${entry.name}
109-
${details.documentation?.map((d) => d.text).join('\n') || ''}`;
108+
const doc = `${details.documentation?.map((d) => d.text).join('\n') || ''}`;
110109

111110
const div = document.createElement('div');
112111
div.className = 'cm-completionInfo-text';

0 commit comments

Comments
 (0)