Remove errant log.

This commit is contained in:
Oliver Blanthorn 2018-04-20 17:15:55 +01:00
parent 4e77b65123
commit bcbbbe6607
No known key found for this signature in database
GPG key ID: 2BB8C36BB504BFF3

View file

@ -457,7 +457,6 @@ function onPageFocus(elem: HTMLElement, args: any[]): void {
async function setInput(el) {
let tab = await activeTabId()
console.log(tab)
// store maximum of 10 elements to stop this getting bonkers huge
const arr = state.prevInputs.concat({ tab, inputId: el.id })
state.prevInputs = arr.slice(Math.max(arr.length - 10, 0))