Skip to content

Commit

Permalink
chore: localize
Browse files Browse the repository at this point in the history
Signed-off-by: Urban Vidovič <urbanfoundit@gmail.com>
  • Loading branch information
pseudobun committed Apr 10, 2024
1 parent e7846ac commit 8e39036
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const RequirementDisplay = ({
if (isError(queryCredentialsResult)) {
useToastStore.setState({
open: true,
title: 'You do not meet the requirements',
title: t('requirements-not-met'),
type: 'error',
loading: false,
link: null,
Expand Down
1 change: 0 additions & 1 deletion packages/dapp/src/components/DashboardDisplay/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ export const filterColumnsType = (
const availableTypes = types
.filter((type) => type.selected)
.map((type) => type.type);
console.log('🚀 ~ availableTypes: ', availableTypes);

const filteredList = credentialList.filter((credential) => {
const { type } = credential.data;
Expand Down
3 changes: 2 additions & 1 deletion packages/dapp/src/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@
"rewards": "Rewards"
},
"RequirementDisplay": {
"verify": "Verify"
"verify": "Verify",
"requirements-not-met": "You do not meet the requirements"
},
"RewardDisplay": {},
"CredentialCard": {
Expand Down

0 comments on commit 8e39036

Please sign in to comment.