Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/locales/el/messages.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/locales/en/messages.js

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion src/locales/en/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -1725,6 +1725,10 @@ msgstr "This action will reduce V2 health factor below liquidation threshold. re
msgid "{currentMethod}"
msgstr "{currentMethod}"

#: src/modules/history/HistoryWrapper.tsx
msgid "Transaction history for Plasma not supported yet, coming soon"
msgstr "Transaction history for Plasma not supported yet, coming soon"

#: src/modules/bridge/BridgeTransactionListItem.tsx
msgid "View TX"
msgstr "View TX"
Expand Down Expand Up @@ -2529,7 +2533,6 @@ msgstr "Staking Rewards"
msgid "Bridge GHO"
msgstr "Bridge GHO"

#: src/modules/history/HistoryWrapper.tsx
#: src/modules/history/HistoryWrapperMobile.tsx
msgid "No transactions yet."
msgstr "No transactions yet."
Expand Down Expand Up @@ -3485,6 +3488,10 @@ msgstr "These assets are temporarily frozen or paused by Aave community decision
msgid "Your proposition power is based on your AAVE/stkAAVE balance and received delegations."
msgstr "Your proposition power is based on your AAVE/stkAAVE balance and received delegations."

#: src/modules/history/HistoryWrapper.tsx
msgid "No transactions yet"
msgstr "No transactions yet"

#: src/modules/bridge/BridgeWrapper.tsx
msgid "You don't have any bridge transactions"
msgstr "You don't have any bridge transactions"
Expand Down
2 changes: 1 addition & 1 deletion src/locales/es/messages.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/locales/fr/messages.js

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion src/modules/history/HistoryWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export const HistoryWrapper = () => {

const isFilterActive = searchQuery.length > 0 || filterQuery.length > 0;
const trackEvent = useRootStore((store) => store.trackEvent);
const currentMarket = useRootStore((store) => store.currentMarket);

const {
data: transactions,
Expand Down Expand Up @@ -259,7 +260,11 @@ export const HistoryWrapper = () => {
}}
>
<Typography sx={{ my: 24 }} variant="h3" color="text.primary">
<Trans>No transactions yet.</Trans>
{currentMarket === 'proto_plasma_v3' ? (
<Trans>Transaction history for Plasma not supported yet, coming soon</Trans>
) : (
<Trans>No transactions yet</Trans>
)}
</Typography>
</Box>
) : (
Expand Down
Loading