Skip to content

Commit 1eacc6f

Browse files
committed
Remove priority
1 parent 031a2c5 commit 1eacc6f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/script.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ const getScript = (isTelemetryEnabled: boolean) => `<script>
156156
for (const todo of data.rawInput.todos) {
157157
const status = todo.status === 'completed' ? '✅' :
158158
todo.status === 'in_progress' ? '🔄' : '⏳';
159-
todoHtml += '\\n' + status + ' ' + todo.content + ' <span class="priority-badge ' + todo.priority + '">' + todo.priority + '</span>';
159+
todoHtml += '\\n' + status + ' ' + todo.content;
160160
}
161161
contentDiv.innerHTML = todoHtml;
162162
} else {
@@ -715,8 +715,6 @@ const getScript = (isTelemetryEnabled: boolean) => `<script>
715715
function sendMessage() {
716716
const text = messageInput.value.trim();
717717
if (text) {
718-
sendStats('Send message');
719-
720718
vscode.postMessage({
721719
type: 'sendMessage',
722720
text: text,

0 commit comments

Comments
 (0)