Skip to content

Commit

Permalink
feat(frontend): change default target chain to arbitrum
Browse files Browse the repository at this point in the history
  • Loading branch information
immutablegoblin authored and boriskubrik committed Oct 25, 2023
1 parent 26026a0 commit cd7c87f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/providers/SwapFormProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ export type SwapFormType = 'from' | 'to';

export const formDefaultValues = {
[SwapFormKey.FromAmount]: '',
[SwapFormKey.FromChain]: SUPPORTED_CHAINS[0],
[SwapFormKey.FromChain]: SUPPORTED_CHAINS[0], // Mainnet
[SwapFormKey.FromToken]: null,
[SwapFormKey.ToAmount]: '',
[SwapFormKey.ToAddress]: '',
[SwapFormKey.ToChain]: SUPPORTED_CHAINS[0],
[SwapFormKey.ToChain]: SUPPORTED_CHAINS[1], // Arbitrum
[SwapFormKey.ToToken]: null,
[SwapFormKey.TokenSearchFilter]: '',
};
Expand Down

0 comments on commit cd7c87f

Please sign in to comment.