0.1.5Updated 6 months ago
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();
}