Skip to content

Commit e82715e

Browse files
committed
add missing translation functions
1 parent c0644ea commit e82715e

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

src/components/FindWallet/WalletTable.tsx

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,10 @@ const WalletTable = ({ data, filters, walletData }) => {
796796
<Tooltip
797797
content={
798798
<p>
799-
{walletFilterData[feature.filterKey].description}
799+
{translateMessageId(
800+
walletFilterData[feature.filterKey].description,
801+
intl
802+
)}
800803
</p>
801804
}
802805
>
@@ -829,7 +832,10 @@ const WalletTable = ({ data, filters, walletData }) => {
829832
<Tooltip
830833
content={
831834
<p>
832-
{walletFilterData[feature.filterKey].description}
835+
{translateMessageId(
836+
walletFilterData[feature.filterKey].description,
837+
intl
838+
)}
833839
</p>
834840
}
835841
>
@@ -868,7 +874,10 @@ const WalletTable = ({ data, filters, walletData }) => {
868874
<Tooltip
869875
content={
870876
<p>
871-
{walletFilterData[feature.filterKey].description}
877+
{translateMessageId(
878+
walletFilterData[feature.filterKey].description,
879+
intl
880+
)}
872881
</p>
873882
}
874883
>
@@ -901,7 +910,10 @@ const WalletTable = ({ data, filters, walletData }) => {
901910
<Tooltip
902911
content={
903912
<p>
904-
{walletFilterData[feature.filterKey].description}
913+
{translateMessageId(
914+
walletFilterData[feature.filterKey].description,
915+
intl
916+
)}
905917
</p>
906918
}
907919
>

0 commit comments

Comments
 (0)