Fix position of log start marker

This commit is contained in:
ekzyis 2024-06-24 20:23:02 +02:00
parent fd08356d37
commit eda7fd6b46
1 changed files with 1 additions and 1 deletions

View File

@ -27,13 +27,13 @@ export function WalletLogs ({ wallet, embedded }) {
</span>
</div>
<div ref={tableRef} className={`${styles.logTable} ${embedded ? styles.embedded : ''}`}>
<div className='w-100 text-center'>------ start of logs ------</div>
{logs.length === 0 && <div className='w-100 text-center'>empty</div>}
<table>
<tbody>
{logs.map((log, i) => <LogMessage key={i} {...log} />)}
</tbody>
</table>
<div className='w-100 text-center'>------ start of logs ------</div>
</div>
</>
)