add manual update notice for macOS, disable autoinstall (#1725)

This commit is contained in:
jeffvli
2026-03-09 01:31:33 -07:00
parent 078d8068e0
commit 6a47e99680
7 changed files with 140 additions and 7 deletions
@@ -3,3 +3,8 @@
background: var(--theme-colors-surface);
box-shadow: 2px 2px 10px 2px rgb(0 0 0 / 40%);
}
.close-button {
display: none;
}
+1 -1
View File
@@ -9,7 +9,7 @@ interface DialogProps extends MantineDialogProps {}
export const Dialog = ({ classNames, style, ...props }: DialogProps) => {
return (
<MantineDialog
classNames={{ root: styles.root, ...classNames }}
classNames={{ closeButton: styles.closeButton, root: styles.root, ...classNames }}
style={{
...style,
}}