diff --git a/src/components/Popup/Popup.astro b/src/components/Popup/Popup.astro index 7bd1bb965..f262aa2ae 100644 --- a/src/components/Popup/Popup.astro +++ b/src/components/Popup/Popup.astro @@ -2,35 +2,41 @@ import Icon from '../Icon.astro'; export interface Props { - id: string; - title: string; - subtitle: string; + id: string; + title: string; + subtitle: string; } const { id, title, subtitle } = Astro.props; --- - + -