File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
src/components/Layer2NetworksTable Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 1
- import { useTranslation } from "next-i18next"
2
-
3
1
import { trackCustomEvent } from "@/lib/utils/matomo"
4
2
5
3
import { Button } from "../ui/buttons/Button"
6
4
7
5
const FindWalletsNoResults = ( { resetFilters } ) => {
8
- const { t } = useTranslation ( "page-wallets-find-wallet" )
9
-
10
6
// Track empty state
11
7
trackCustomEvent ( {
12
8
eventCategory : "Wallet_empty_state" ,
@@ -26,14 +22,12 @@ const FindWalletsNoResults = ({ resetFilters }) => {
26
22
return (
27
23
< div className = "m-24 border-2 border-dashed border-body-light" >
28
24
< div className = "p-12" >
29
- < h3 className = "mb-6 text-3xl font-normal" >
30
- { t ( "page-find-wallet-empty-results-title" ) }
31
- </ h3 >
25
+ < h3 className = "mb-6 text-3xl font-normal" > No results</ h3 >
32
26
< p >
33
27
There are no networks matching your criteria, try adding some filters
34
28
</ p >
35
29
< Button variant = "ghost" onClick = { handleClick } >
36
- < p > { t ( "page-find-wallet-reset- filters" ) } </ p >
30
+ Reset filters
37
31
</ Button >
38
32
</ div >
39
33
</ div >
You can’t perform that action at this time.
0 commit comments