summaryrefslogtreecommitdiff
path: root/www/src/components/Note.astro
diff options
context:
space:
mode:
authorGravatar Caleb Jasik <calebjasik@jasik.xyz> 2021-10-18 12:40:22 -0500
committerGravatar GitHub <noreply@github.com> 2021-10-18 19:40:22 +0200
commita788a876f8234d6680a637964e32330a8c1a398e (patch)
tree41e4a85625a40ca1f3d21f5d91d81c4b11affab9 /www/src/components/Note.astro
parent90618131cc591f5800f6ef373df6a8aece14701d (diff)
downloadastro-a788a876f8234d6680a637964e32330a8c1a398e.tar.gz
astro-a788a876f8234d6680a637964e32330a8c1a398e.tar.zst
astro-a788a876f8234d6680a637964e32330a8c1a398e.zip
Fix mismatched props in `www` (#1574)
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;