diff --git a/src/routes/_libraries/blog.$.tsx b/src/routes/_libraries/blog.$.tsx index 5922289d4..66c70589c 100644 --- a/src/routes/_libraries/blog.$.tsx +++ b/src/routes/_libraries/blog.$.tsx @@ -101,7 +101,7 @@ function BlogPost() { const blogContent = `_by ${formatAuthors(authors)} on ${format( new Date(published || 0), - 'MMM dd, yyyy', + 'MMM d, yyyy', )}._ ${content}` diff --git a/src/routes/_libraries/blog.index.tsx b/src/routes/_libraries/blog.index.tsx index 6d095659e..1d5352eb1 100644 --- a/src/routes/_libraries/blog.index.tsx +++ b/src/routes/_libraries/blog.index.tsx @@ -88,10 +88,10 @@ function BlogIndex() { {published ? ( ) : null}

diff --git a/src/routes/_libraries/index.tsx b/src/routes/_libraries/index.tsx index 0c02d8d9f..598ef07af 100644 --- a/src/routes/_libraries/index.tsx +++ b/src/routes/_libraries/index.tsx @@ -1,5 +1,4 @@ -import { Link, MatchRoute, createFileRoute } from '@tanstack/react-router' -import { twMerge } from 'tailwind-merge' +import { Link, createFileRoute } from '@tanstack/react-router' import { Footer } from '~/components/Footer' import { LazySponsorSection } from '~/components/LazySponsorSection' import discordImage from '~/images/discord-logo-white.svg' @@ -385,11 +384,11 @@ function Index() { dateTime={published} title={format( new Date(published), - 'MMM dd, yyyy', + 'MMM d, yyyy', )} > {' '} - on {format(new Date(published), 'MMM dd, yyyy')} + on {format(new Date(published), 'MMM d, yyyy')} ) : null}