diff options
author | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-08-05 18:50:37 +0100 |
---|---|---|
committer | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-08-05 18:50:37 +0100 |
commit | 0af094770c4ebabc56ff761a8bd215bc397c0f7e (patch) | |
tree | a9ad669c8b84b4d13897732ed93ccfcbbeb2cb25 /src/components/organisms/Date.astro | |
parent | 84eef3f848c4efa18985a776021a58720744523a (diff) |
refactor: reading page review
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
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; |