File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed
Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ const chainOptions = computed(() =>
5656 chainConfigs [formData .value .chainNamespace as ChainNamespaceType ].map ((x ) => ({
5757 name: ` ${x .chainId } ${x .tickerName } ` ,
5858 value: x .chainId ,
59- }))
59+ })),
6060);
6161
6262const privateKeyProvider = computed <IBaseProvider <string > | null >(() => {
@@ -293,13 +293,6 @@ const onSignAllTransactions = async () => {
293293 Login with passkey
294294 </Button >
295295 </div >
296- <div class =" text-base text-app-gray-900 dark:text-app-gray-200 font-medium mt-4 mb-5 px-0" >
297- Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever
298- since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only
299- five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the
300- release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker
301- including versions of Lorem Ipsum.
302- </div >
303296 </Card >
304297 </div >
305298 <div v-else class =" grid gap-0" >
Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ export type FormData = {
3737 chain : string ;
3838} ;
3939
40- export const networkOptions = Object . values ( WEB3AUTH_NETWORK ) . map ( ( x ) => ( { name : x , value : x } ) ) ;
40+ export const networkOptions = [ WEB3AUTH_NETWORK . TESTNET , WEB3AUTH_NETWORK . SAPPHIRE_DEVNET ] . map ( ( x ) => ( { name : x , value : x } ) ) ;
4141
42- export const chainNamespaceOptions = Object . values ( CHAIN_NAMESPACES ) . map ( ( x ) => ( { name : x , value : x } ) ) ;
42+ export const chainNamespaceOptions = [ CHAIN_NAMESPACES . EIP155 , CHAIN_NAMESPACES . SOLANA ] . map ( ( x ) => ( { name : x , value : x } ) ) ;
4343
4444export const chainConfigs : Record < ChainNamespaceType , CustomChainConfig [ ] > = {
4545 [ CHAIN_NAMESPACES . EIP155 ] : [
You can’t perform that action at this time.
0 commit comments