Skip to content

Commit

Permalink
update created_at
Browse files Browse the repository at this point in the history
  • Loading branch information
imhson committed Apr 2, 2024
1 parent 62e84a5 commit 4e86448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/(private)/wish/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ export default function Page() {
<div className={`${Bangkok.className} text-xl font-bold`}>Submission history</div>
<div className='max-h-[60vh] overflow-auto pr-5'>
{userJackpotData?.jackpot_users.map((d: any) => (
<div className='py-3 flex gap-10 border-b border-[#404040]' key={d.updated_at}>
<div className='py-3 flex gap-10 border-b border-[#404040]' key={d.created_at}>
<div className='p-[10px] text-sm text-[#FFF7C4] w-[150px] whitespace-nowrap'>
{moment(d.updated_at).format('h a, Do MMM YYYY')}
{moment(d.created_at).format('h a, Do MMM YYYY')}
</div>
<div className='flex gap-5'>
{d.purchased_line.split('-').map((d: any, index: number) => (
Expand Down

0 comments on commit 4e86448

Please sign in to comment.