diff --git a/src/intro.tsx b/src/intro.tsx index 597def5..0bbfcf5 100644 --- a/src/intro.tsx +++ b/src/intro.tsx @@ -16,10 +16,7 @@ function GedcomLink(props: {url: string; text: string}) { } function formatBuildDate(dateString: string) { - return new Date(dateString) - .toISOString() - .slice(0, 16) - .replace('T', ' '); + return dateString.slice(0, 16); } /** The intro page. */