diff --git a/frontend/src/Components/ConvertSeconds.tsx b/frontend/src/Components/ConvertSeconds.tsx
index 1b288acc..ac534451 100644
--- a/frontend/src/Components/ConvertSeconds.tsx
+++ b/frontend/src/Components/ConvertSeconds.tsx
@@ -1,13 +1,10 @@
const convertSeconds = (secs: number) => {
const hours = Math.floor(secs / 3600);
const minutes = Math.floor((secs % 3600) / 60);
- const seconds = Math.floor(secs % 60);
-
+ //removed seconds per #601 along with not using abbreviations
return hours
- ? { number: hours, label: `hr${hours === 1 ? '' : 's'}` }
- : (minutes
- ? { number: minutes, label: `min${minutes === 1 ? '' : 's'}` }
- : { number: seconds, label: `sec${seconds === 1 ? '' : 's'}` });
+ ? { number: hours, label: `hour${hours === 1 ? '' : 's'}` }
+ : { number: minutes, label: `minute${minutes === 1 ? '' : 's'}` };
};
export default convertSeconds;
diff --git a/frontend/src/Components/OpenContentItemAccordion.tsx b/frontend/src/Components/OpenContentItemAccordion.tsx
index 3999f843..bb10f906 100644
--- a/frontend/src/Components/OpenContentItemAccordion.tsx
+++ b/frontend/src/Components/OpenContentItemAccordion.tsx
@@ -78,12 +78,14 @@ export default function OpenContentItemAccordion({
activeKey === title ? 'max-h-[800px]' : 'max-h-0'
}`}
>
- {contentItems.map((item) => (
-