We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1da56e commit e084bccCopy full SHA for e084bcc
pages/account/misc/guild.jsx
@@ -98,7 +98,7 @@ const Guild = () => {
98
<CardTitleAndValue title={'Saves (up to 3)'}>
99
<Stack gap={1}>
100
<Box>
101
- {dataTimestamp?.reverse()?.map(({ timestamp }, index) => {
+ {[...dataTimestamp].reverse()?.map(({ timestamp }, index) => {
102
return <Typography
103
key={timestamp + index}>#{index + 1} - {format(new Date(timestamp), 'dd/MM/yyyy HH:mm:ss')}</Typography>
104
})}
0 commit comments