export function authorSearchHandler(event: Event): void { event.preventDefault(); const author = document.querySelector('#author')?.value; window.location.href = `/inbox/${author}`; }