export const Reload = (parent?: HTMLElement) => {
parent ||= document.querySelector<HTMLElement>('.drawer-content')!;
const link = document.createElement('a');
link.href = globalThis.location.href;
link.style.visibility = 'hidden';
parent.appendChild(link);
link.click();
link.remove();
}