diff --git a/assets/js/autocomplete/history/history.ts b/assets/js/autocomplete/history/history.ts index 58473e45..cf43cc2d 100644 --- a/assets/js/autocomplete/history/history.ts +++ b/assets/js/autocomplete/history/history.ts @@ -61,7 +61,6 @@ export class InputHistory { if (index >= 0) { this.records.splice(index, 1); } else if (this.records.length >= maxRecords) { - // Bye-bye, the oldest unused record! 👋 Nopony will miss you 🔪🩸 this.records.pop(); }