pl-fe: Display block expiration date in blocks list
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
@ -43,8 +43,8 @@ const BlocksPage: React.FC = () => {
|
||||
itemClassName={clsx('pb-4', { 'last:pb-0': !hasNextPage })}
|
||||
isLoading={isFetching}
|
||||
>
|
||||
{data.map((accountId) => (
|
||||
<AccountContainer key={accountId} id={accountId} actionType='blocking' />
|
||||
{data.map(([accountId, blockExpiresAt]) => (
|
||||
<AccountContainer key={accountId} id={accountId} actionType='blocking' blockExpiresAt={blockExpiresAt} />
|
||||
))}
|
||||
</ScrollableList>
|
||||
</Column>
|
||||
|
||||
Reference in New Issue
Block a user