diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/UpdatedDate.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/UpdatedDate.tsx index a9c468e5f..5f8d51d4f 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/UpdatedDate.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/UpdatedDate.tsx @@ -1,5 +1,4 @@ import * as React from "react"; -import * as moment from "moment"; interface IProps { updatedDate: string; @@ -8,8 +7,6 @@ interface IProps { export const UpdatedDate = (props: IProps) => props.updatedDate ?
  • -

    Updated: {moment(props.updatedDate.toLocaleString()).isValid() - ? moment(props.updatedDate.toLocaleString()).format("l") - : "N/A"}

    +

    Updated: {props.updatedDate.toLocaleString()}

  • : null;