Skip to content

Commit

Permalink
docs(ListItem): Use date string instead function
Browse files Browse the repository at this point in the history
Calling the date function generates unnecessary changes in Argos.
  • Loading branch information
Merkur39 authored and JF-Cozy committed May 30, 2024
1 parent df33ecf commit 16d4804
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions react/ListItem/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,10 @@ const files = [
metadata: {
number: 12345,
refTaxIncome: '153',
datetime: new Date(Date.now()).toISOString(),
referencedDate: new Date(Date.now()).toISOString(),
expirationDate: new Date(Date.now() + 10 * 24 * 60 * 60 * 1000).toISOString(),
datetime: '2024-01-11T12:00:00.000Z',
datetimeLabel: 'expirationDate',
referencedDate: '2024-01-01T12:00:00.000Z',
expirationDate: '2024-01-11T12:00:00.000Z',
noticePeriod: '30',
qualification: {
label: 'driver_license'
Expand Down

0 comments on commit 16d4804

Please sign in to comment.