Исправлен нейминг в store и transactionsStore. Возвращены иконки юзеров на страницу ValidationLog

This commit is contained in:
DwCay
2022-07-13 14:30:11 +03:00
parent 8489bc375c
commit bc364d1b85
6 changed files with 75 additions and 16 deletions

View File

@@ -1,9 +1,10 @@
import React from "react";
function ValidationUsersImg({ image }) {
return (
<a className="block" href="#0">
<img className="rounded-full border-2 border-slate-100 box-content" src={image.img} width={`${image.size}`} alt={image.img} height={`${image.size}`}/>
<a className="block">
<img className="rounded-full border-2 border-slate-100 box-content" src={image.image} width={`${image.size}`} alt={image.image} height={`${image.size}`}/>
</a>
);
}