diff --git a/src/components/AddressBar.astro b/src/components/AddressBar.astro index 2abc001..2f3aaef 100644 --- a/src/components/AddressBar.astro +++ b/src/components/AddressBar.astro @@ -11,7 +11,7 @@ const form = new FormGroup([ { name: "url", value: url, - placeholder: "Put the URL here", + placeholder: "Type a URL here", validators: [Validators.required, Validators.minLength(11)], }, ]); @@ -37,7 +37,6 @@ const form = new FormGroup([ diff --git a/src/components/Library.astro b/src/components/Library.astro index a761568..84ce1cc 100644 --- a/src/components/Library.astro +++ b/src/components/Library.astro @@ -7,6 +7,7 @@ export interface Props { const {postDivSelector, skipSave = false} = Astro.props; ---