diff --git a/web/src/components/Button.jsx b/web/src/components/Button.jsx
index a47f93265..abaf81548 100644
--- a/web/src/components/Button.jsx
+++ b/web/src/components/Button.jsx
@@ -65,6 +65,7 @@ export default function Button({
className = '',
color = 'blue',
disabled = false,
+ ariaCapitalize = false,
href,
type = 'contained',
...attrs
@@ -107,7 +108,7 @@ export default function Button({
>
{children}
- {hovered && attrs['aria-label'] ? : null}
+ {hovered && attrs['aria-label'] ? : null}
);
}
diff --git a/web/src/components/Card.jsx b/web/src/components/Card.jsx
index 7b366d98b..43f334d1d 100644
--- a/web/src/components/Card.jsx
+++ b/web/src/components/Card.jsx
@@ -39,7 +39,7 @@ export default function Box({
))}
{icons.map(({ name, icon: Icon, ...props }) => (
-