Skip to content

Commit

Permalink
Merge pull request #238 from getAlby/task-fix
Browse files Browse the repository at this point in the history
chore: update all dependencies
  • Loading branch information
im-adithya authored Dec 30, 2024
2 parents 8c5c9cd + 8de482f commit 3d62589
Show file tree
Hide file tree
Showing 3 changed files with 200 additions and 229 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.10",
"expo": "~52.0.14",
"expo-camera": "~16.0.8",
"expo": "~52.0.20",
"expo-camera": "~16.0.10",
"expo-clipboard": "~7.0.0",
"expo-constants": "~17.0.3",
"expo-font": "~13.0.1",
"expo-font": "~13.0.2",
"expo-linear-gradient": "~14.0.1",
"expo-linking": "~7.0.3",
"expo-local-authentication": "~15.0.1",
"expo-router": "~4.0.11",
"expo-router": "~4.0.15",
"expo-secure-store": "~14.0.0",
"expo-splash-screen": "^0.29.18",
"expo-status-bar": "~2.0.0",
Expand All @@ -55,16 +55,16 @@
"nativewind": "^4.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.3",
"react-native": "0.76.5",
"react-native-get-random-values": "^1.9.0",
"react-native-qrcode-svg": "^6.3.1",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "5.0.0",
"react-native-screens": "~4.1.0",
"react-native-screens": "~4.4.0",
"react-native-svg": "15.8.0",
"react-native-toast-message": "^2.2.0",
"react-native-url-polyfill": "^2.0.0",
"react-native-webview": "^13.12.2",
"react-native-webview": "^13.12.5",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"text-encoding": "^0.7.0",
Expand Down
11 changes: 7 additions & 4 deletions pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,15 @@ export function Home() {
>
{wallets.length > 1 && (
<TouchableOpacity
className="w-full"
onPress={() => {
router.push("/settings/wallets");
}}
>
<Text
numberOfLines={1}
ellipsizeMode="tail"
className="text-muted-foreground font-medium2 text-xl px-4 mb-2"
className="text-center text-muted-foreground font-medium2 text-xl px-4 mb-2"
>
{wallets[selectedWalletId].name || DEFAULT_WALLET_NAME}
</Text>
Expand All @@ -119,9 +120,11 @@ export function Home() {
getFiatAmount(Math.floor(balance.balance / 1000))}
{balanceDisplayMode === "hidden" && "****"}
</Text>
<Text className="text-muted-foreground text-3xl font-semibold2">
{balanceDisplayMode === "sats" && "sats"}
</Text>
{balanceDisplayMode === "sats" && (
<Text className="text-muted-foreground text-3xl font-semibold2">
sats
</Text>
)}
</>
) : (
<Skeleton className="w-48 h-10" />
Expand Down
Loading

0 comments on commit 3d62589

Please sign in to comment.