Skip to content

Commit

Permalink
token -> prize vault
Browse files Browse the repository at this point in the history
  • Loading branch information
Ncookiez committed May 16, 2024
1 parent f8d5865 commit 16e9bec
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions apps/app/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"clearFilters": "Clear Filters",
"disclaimer": "PoolTogether prize vaults can be deployed by anyone. <link>Know what you are depositing into</link>",
"headers": {
"token": "Token",
"prizeVault": "Prize Vault",
"prizeYield": "Prize Yield",
"bonusRewards": "Bonus Rewards",
"totalDeposits": "Total Deposits",
Expand Down Expand Up @@ -148,7 +148,7 @@
"moreInfo": "More Info"
},
"bonusRewardHeaders": {
"token": "Token",
"prizeVault": "Prize Vault",
"rewardToken": "Reward Token",
"rewardsEarned": "Rewards Earned",
"rewardsClaimed": "Claimed Rewards",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const AccountDelegationsTable = (props: AccountDelegationsTableProps) =>

const tableHeaders = useMemo(() => {
const headers: TableProps['data']['headers'] = {
token: { content: t_vaults('headers.token') },
token: { content: t_vaults('headers.prizeVault') },
odds: {
content: isExternalUser ? (
t_vault('headers.winChance')
Expand Down
2 changes: 1 addition & 1 deletion apps/app/src/components/Account/AccountDepositsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const AccountDepositsTable = (props: AccountDepositsTableProps) => {

const tableHeaders = useMemo(() => {
const headers: TableProps['data']['headers'] = {
token: { content: t_vaults('headers.token') },
token: { content: t_vaults('headers.prizeVault') },
odds: {
content: isExternalUser ? (
t_vault('headers.winChance')
Expand Down
2 changes: 1 addition & 1 deletion apps/app/src/components/Account/AccountPromotionsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const AccountPromotionsTable = (props: AccountPromotionsTableProps) => {

const tableHeaders = useMemo(() => {
const headers: TableProps['data']['headers'] = {
token: { content: t_headers('token') },
token: { content: t_headers('prizeVault') },
rewardToken: {
content: t_headers('rewardToken'),
position: 'center'
Expand Down
2 changes: 1 addition & 1 deletion apps/app/src/components/Vault/VaultsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const VaultsTable = (props: VaultsTableProps) => {

const tableData: TableProps['data'] = {
headers: {
token: { content: t_vaults('headers.token') },
token: { content: t_vaults('headers.prizeVault') },
prizeYield: {
content: (
<SortableHeader
Expand Down

0 comments on commit 16e9bec

Please sign in to comment.