Skip to content

Commit

Permalink
fix: remove updated_at field from listing details page (bloom-housing…
Browse files Browse the repository at this point in the history
  • Loading branch information
KrissDrawing authored and ludtkemorgan committed Sep 5, 2023
1 parent eaff2a5 commit ab08213
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const DetailListingData = () => {

return (
<GridSection className="bg-primary-lighter" title={t("listings.details.listingData")} inset>
<GridCell>
<GridCell span={2}>
<ViewItem label={t("listings.details.id")}>{listing.id}</ViewItem>
</GridCell>

Expand All @@ -19,14 +19,6 @@ const DetailListingData = () => {
{getDetailFieldTime(listing.createdAt)}
</ViewItem>
</GridCell>

<GridCell>
<ViewItem label={t("listings.details.updatedDate")}>
{getDetailFieldDate(listing.updatedAt)}
<br />
{getDetailFieldTime(listing.updatedAt)}
</ViewItem>
</GridCell>
</GridSection>
)
}
Expand Down

0 comments on commit ab08213

Please sign in to comment.