Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
Fix a type error since last rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
cometkim committed Nov 6, 2019
1 parent 799c9f5 commit 6df811b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/recent_date.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// See LICENSE.txt for license information.

import React from 'react';
import {FormattedDate, FormattedMessage, DateSource} from 'react-intl';
import {FormattedDate, FormattedMessage} from 'react-intl';

type Props = {
value: DateSource;
value: Date | string | number;
children?(val: string): React.ReactElement | null;
}

Expand Down

0 comments on commit 6df811b

Please sign in to comment.