From 0af094770c4ebabc56ff761a8bd215bc397c0f7e Mon Sep 17 00:00:00 2001 From: João Augusto Costa Branco Marado Torres Date: Tue, 5 Aug 2025 18:50:37 +0100 Subject: refactor: reading page review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Augusto Costa Branco Marado Torres --- src/components/organisms/Date.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components/organisms') 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; -- cgit v1.2.3