move alerts ui to sheet component

This commit is contained in:
henrygd
2025-08-22 19:28:00 -04:00
parent 684d92c497
commit c158b1aeeb
8 changed files with 272 additions and 192 deletions

View File

@@ -45,7 +45,7 @@ export function Link(props: React.AnchorHTMLAttributes<HTMLAnchorElement>) {
if (e.ctrlKey || e.metaKey) {
window.open(href, "_blank")
} else {
$router.open(href)
navigate(href)
props.onClick?.(e)
}
}}