From 2843d2ddb88a859f208cb849e8d6b50994fc16fa Mon Sep 17 00:00:00 2001 From: wrigh393 Date: Fri, 16 Jul 2021 15:32:29 -0400 Subject: [PATCH] Changed default value of backgroundColor variable to "inherit" --- src/components/LastUpdatedCell/LastUpdatedCell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/LastUpdatedCell/LastUpdatedCell.js b/src/components/LastUpdatedCell/LastUpdatedCell.js index cae525c..3d32008 100644 --- a/src/components/LastUpdatedCell/LastUpdatedCell.js +++ b/src/components/LastUpdatedCell/LastUpdatedCell.js @@ -26,7 +26,7 @@ export default function LastUpdatedCell({ time, ItemTableCellProps }) { const week = day * 7; const month = week * 4; - let backgroundColor = theme.palette.background.paper; + let backgroundColor = "inherit"; // 1-6 days old if (timeDelta > day && timeDelta <= week) {