Skip to content

Commit

Permalink
Changed default value of backgroundColor variable to "inherit"
Browse files Browse the repository at this point in the history
  • Loading branch information
wrigh393 committed Jul 16, 2021
1 parent a4de881 commit 2843d2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LastUpdatedCell/LastUpdatedCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 2843d2d

Please sign in to comment.