Skip to content

Commit

Permalink
make devnet default, fix input arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
ngundotra committed Jan 9, 2024
1 parent 9bbed04 commit 1a2a8c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/account/ProgramInterfaceCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ function MsaInstructionCard({
value={inputArgumentValues[key] || ''}
onChange={e => {
setInputArgumentValues({
...inputAccountValues,
...inputArgumentValues,
[key]: e.target.value,
});
}}
Expand Down
2 changes: 1 addition & 1 deletion app/providers/cluster.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function parseQuery(searchParams: ReadonlyURLSearchParams | null): Cluster {
return Cluster.Testnet;
case 'mainnet-beta':
default:
return Cluster.MainnetBeta;
return Cluster.Devnet;
}
}

Expand Down

0 comments on commit 1a2a8c7

Please sign in to comment.