summaryrefslogtreecommitdiff
path: root/www/src/components/Note.astro
diff options
context:
space:
mode:
Diffstat (limited to 'www/src/components/Note.astro')
-rw-r--r--www/src/components/Note.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/src/components/Note.astro b/www/src/components/Note.astro
index 12fc396bc..abbdb987b 100644
--- a/www/src/components/Note.astro
+++ b/www/src/components/Note.astro
@@ -1,6 +1,6 @@
---
export interface Props {
- title: string;
+ title?: string;
type?: 'tip' | 'warning' | 'error'
}
const { type = 'tip', title } = Astro.props;