Skip to content

Commit 209f9dd

Browse files
cleanup
1 parent 24dab7b commit 209f9dd

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

examples/vue-app/src/App.vue

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff 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
6262
const 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">

examples/vue-app/src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

4444
export const chainConfigs: Record<ChainNamespaceType, CustomChainConfig[]> = {
4545
[CHAIN_NAMESPACES.EIP155]: [

0 commit comments

Comments
 (0)