Skip to content

Commit 3b136c0

Browse files
authored
Merge pull request #14526 from ethereum/l2EmptyState
fix empty state labels
2 parents 7a511fe + 636a727 commit 3b136c0

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/components/Layer2NetworksTable/NetworksNoResults.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
import { useTranslation } from "next-i18next"
2-
31
import { trackCustomEvent } from "@/lib/utils/matomo"
42

53
import { Button } from "../ui/buttons/Button"
64

75
const FindWalletsNoResults = ({ resetFilters }) => {
8-
const { t } = useTranslation("page-wallets-find-wallet")
9-
106
// Track empty state
117
trackCustomEvent({
128
eventCategory: "Wallet_empty_state",
@@ -26,14 +22,12 @@ const FindWalletsNoResults = ({ resetFilters }) => {
2622
return (
2723
<div className="m-24 border-2 border-dashed border-body-light">
2824
<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>
3226
<p>
3327
There are no networks matching your criteria, try adding some filters
3428
</p>
3529
<Button variant="ghost" onClick={handleClick}>
36-
<p>{t("page-find-wallet-reset-filters")}</p>
30+
Reset filters
3731
</Button>
3832
</div>
3933
</div>

0 commit comments

Comments
 (0)