summaryrefslogtreecommitdiff
path: root/src/components/organisms/Date.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/Date.astro')
-rw-r--r--src/components/organisms/Date.astro4
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;