diff options
Diffstat (limited to 'src/components/organisms/Date.astro')
-rw-r--r-- | src/components/organisms/Date.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/organisms/Date.astro b/src/components/organisms/Date.astro index 960cfb7..3718664 100644 --- a/src/components/organisms/Date.astro +++ b/src/components/organisms/Date.astro @@ -3,9 +3,9 @@ import type { HTMLAttributes } from "astro/types"; interface Props { date: Date; - locales: Intl.LocalesArgument; + locales?: Intl.LocalesArgument; options: Intl.DateTimeFormatOptions; - itemprop: HTMLAttributes<"time">["itemprop"]; + itemprop?: HTMLAttributes<"time">["itemprop"]; } const { date, locales, options } = Astro.props; |