From a1eac976b20e39f86d5944fbec68e2a0f8ffb746 Mon Sep 17 00:00:00 2001 From: João Augusto Costa Branco Marado Torres Date: Tue, 24 Jun 2025 16:13:59 -0300 Subject: feat: configurable header component 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/signature/Commit.astro | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/components/signature') diff --git a/src/components/signature/Commit.astro b/src/components/signature/Commit.astro index 9cc997a..a2138ab 100644 --- a/src/components/signature/Commit.astro +++ b/src/components/signature/Commit.astro @@ -6,8 +6,7 @@ import { toIso8601Full } from "@utils/datetime"; type Props = { commit: Commit; lang: string }; const dir = await gitDir(); -const { hash, files, author, committer, signature } = - Astro.props.commit; +const { hash, files, author, committer, signature } = Astro.props.commit; const formatter = new Intl.DateTimeFormat([Astro.props.lang], { dateStyle: "short", -- cgit v1.2.3