chore(note_autocomplete): remove logging

This commit is contained in:
Elian Doran 2025-04-01 22:07:59 +03:00
parent adcb803caa
commit b94bda6670
No known key found for this signature in database

View File

@ -1,6 +1,5 @@
import server from "./server.js";
import appContext from "../components/app_context.js";
import utils from "./utils.js";
import noteCreateService from "./note_create.js";
import froca from "./froca.js";
import { t } from "./i18n.js";
@ -12,7 +11,6 @@ const SELECTED_EXTERNAL_LINK_KEY = "data-external-link";
// To prevent search lag when there are a large number of notes, set a delay based on the number of notes to avoid jitter.
const notesCount = await server.get<number>(`autocomplete/notesCount`);
console.log(notesCount);
let debounceTimeoutId: ReturnType<typeof setTimeout>;
function getSearchDelay(notesCount: number): number {