Skip to content

Commit

Permalink
WALLET-396: Update dependencies (#21)
Browse files Browse the repository at this point in the history
* Update dependencies

* Fix missing numbers on VC card view

* Downgrade some dependencies to fix issues

* Remove console log
  • Loading branch information
edwardsph authored Aug 12, 2024
1 parent aa2a259 commit a578fd7
Show file tree
Hide file tree
Showing 4 changed files with 1,987 additions and 884 deletions.
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ node_modules/
.expo/
dist/
/build/
ios
android/app/debug
android/app/profile
android/app/release
ios/
android/
artifacts/
npm-debug.*
*.jks
Expand All @@ -16,7 +14,7 @@ npm-debug.*
*.orig.*
web-build/
.idea
android/.gradle

# macOS
.DS_Store
.env.local
Expand Down
6 changes: 5 additions & 1 deletion components/files/VcCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ const VcCard: React.FC<IComponentProps> = ({ data }) => {
<FieldInfo
key={subject[0]}
title={addSpacesToCamelCase(subject[0])}
content={typeof subject[1] === "string" ? subject[1] : ""}
content={
typeof subject[1] === "string" || typeof subject[1] === "number"
? String(subject[1])
: ""
}
/>
))}
<View style={styles.issuerContainer}>
Expand Down
Loading

0 comments on commit a578fd7

Please sign in to comment.