You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduces a network selector for Solana (mainnet/devnet) in the server wallets table, passing the selected network to wallet row and balance components. Also updates the create Solana wallet button styling for consistency.
Copy file name to clipboardExpand all lines: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/components/server-wallets-table.client.tsx
+45-6Lines changed: 45 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,13 @@ import {
40
40
PaginationNext,
41
41
PaginationPrevious,
42
42
}from"@/components/ui/pagination";
43
+
import{
44
+
Select,
45
+
SelectContent,
46
+
SelectItem,
47
+
SelectTrigger,
48
+
SelectValue,
49
+
}from"@/components/ui/select";
43
50
import{Skeleton}from"@/components/ui/skeleton";
44
51
import{Switch}from"@/components/ui/switch";
45
52
import{
@@ -102,6 +109,9 @@ export function ServerWalletsTable(props: ServerWalletsTableProps) {
Copy file name to clipboardExpand all lines: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/solana-wallets/components/create-solana-wallet.client.tsx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -70,8 +70,8 @@ export function CreateSolanaWallet(props: {
0 commit comments