Okay can I please move away from working on this now so I can get the other pages done lol

This commit is contained in:
Alexis Werefox 2021-04-26 18:16:42 +00:00
parent a9c2016d6c
commit eb81af0cbd
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ export default function HRT({ startTimes }) {
</p> </p>
<div className="pb-6 text-lg md:text-2xl text-center text-werefox-blue-dark dark:text-werefox-blue grid grid-cols-1 grid-rows-4"> <div className="pb-6 text-lg md:text-2xl text-center text-werefox-blue-dark dark:text-werefox-blue grid grid-cols-1 grid-rows-4">
{Object.keys(timesArray).map((t) => ( {Object.keys(timesArray).map((t) => (
<p>{timesArray[t]}</p> <p key={t}>{timesArray[t]}</p>
))} ))}
</div> </div>
</WCard> </WCard>