Skip to content

Commit 8cbab56

Browse files
Dashboard links UUID console (#554)
* Removing the old dashboard code * one last line to clean * commit for review and collab * people enabled * removing console log (bad Phil) Co-authored-by: Spencer Stolworthy <[email protected]>
1 parent e8e660b commit 8cbab56

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/components/dashboard/widgets/dw_last_updated_engagements.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export interface DwLastUpdatedProps {
2424
const columns = ['Customer Name', 'Name', 'Last Update'];
2525
export const DwLastUpdated = (props: DwLastUpdatedProps) => {
2626
const rows = props.engagements.map(e => {
27-
console.log(e);
2827
let relativeDate = formatRelative(e.last_update, new Date());
2928
relativeDate = relativeDate.charAt(0).toUpperCase() + relativeDate.slice(1);
3029
return [

0 commit comments

Comments
 (0)