Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show dates without 'almost', 'over' and 'less than' #1541

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions components/List/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import React from 'react';
import dynamic from 'next/dynamic';
import {
format,
formatDistance,
formatDistanceStrict,
parseISO,
formatDistanceToNow,
formatDistanceToNowStrict,
} from 'date-fns';

import { ProductWithSlug } from 'types/Product';
Expand All @@ -31,10 +31,10 @@ export default function Item(props: ProductWithSlug) {

const dateOpen = parseISO(props.dateOpen);
const dateClose = parseISO(props.dateClose);
const relativeDate = formatDistanceToNow(dateClose);
const relativeDate = formatDistanceToNowStrict(dateClose);

const getYears = () => {
const duration = formatDistance(dateClose, dateOpen);
const duration = formatDistanceStrict(dateClose, dateOpen);

if (!isPast()) {
return ` It will be ${duration} old.`;
Expand Down