fix(SW-234): better empty state message for no transactions

This commit is contained in:
Michael Zetterberg
2024-08-09 12:40:18 +02:00
parent 9796ff29c5
commit 49ec390599
7 changed files with 7 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ export default async function MobileTable({ lang, transactions }: TableProps) {
) : (
<tr>
<td className={styles.placeholder} colSpan={2}>
{formatMessage({ id: "Empty" })}
{formatMessage({ id: "There are no transactions to display" })}
</td>
</tr>
)}