Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Fixes locale mix #351

Merged
merged 1 commit into from
Jan 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ exports[`WalletSummary tests basic tests matches the snapshot 1`] = `
<div
className="c5"
>
MISSING: tokenGrant
MISSING: tokenGrantClaimed
</div>
<div
className="c6"
Expand Down
2 changes: 1 addition & 1 deletion src/features/rewards/walletSummary/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class WalletSummary extends React.PureComponent<Props, {}> {
const list = [
{
key: 'grant',
translation: 'tokenGrant',
translation: 'tokenGrantClaimed',
color: 'earnings'
},
{
Expand Down
1 change: 1 addition & 0 deletions stories/assets/locale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ const locale: Record<string, string> = {
titleETH: 'Etherium (ETH)',
titleLTC: 'Lite Coin (LTC)',
tokenGrant: 'Token Grants',
tokenGrantClaimed: 'Token Grants Claimed',
tokens: 'tokens',
total: 'Total',
transactions: 'Transactions',
Expand Down