Commit c4f9e899 authored by tom goriunov's avatar tom goriunov Committed by GitHub

Merge pull request #1665 from illuque/fix_no_deposits_text

Fix message shown when there are no deposits on L2
parents 459e5ea0 77854a0c
...@@ -76,7 +76,7 @@ const OptimisticL2Deposits = () => { ...@@ -76,7 +76,7 @@ const OptimisticL2Deposits = () => {
<DataListDisplay <DataListDisplay
isError={ isError } isError={ isError }
items={ data?.items } items={ data?.items }
emptyText="There are no withdrawals." emptyText="There are no deposits."
content={ content } content={ content }
actionBar={ actionBar } actionBar={ actionBar }
/> />
......
...@@ -75,7 +75,7 @@ const L2Deposits = () => { ...@@ -75,7 +75,7 @@ const L2Deposits = () => {
<DataListDisplay <DataListDisplay
isError={ isError } isError={ isError }
items={ data?.items } items={ data?.items }
emptyText="There are no withdrawals." emptyText="There are no deposits."
content={ content } content={ content }
actionBar={ actionBar } actionBar={ actionBar }
/> />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment