Skip to content

Commit e084bcc

Browse files
committed
Fix visual bug in guilds.jsx
1 parent c1da56e commit e084bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/account/misc/guild.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const Guild = () => {
9898
<CardTitleAndValue title={'Saves (up to 3)'}>
9999
<Stack gap={1}>
100100
<Box>
101-
{dataTimestamp?.reverse()?.map(({ timestamp }, index) => {
101+
{[...dataTimestamp].reverse()?.map(({ timestamp }, index) => {
102102
return <Typography
103103
key={timestamp + index}>#{index + 1} - {format(new Date(timestamp), 'dd/MM/yyyy HH:mm:ss')}</Typography>
104104
})}

0 commit comments

Comments
 (0)