Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Dec 4, 2024
1 parent 24dab7b commit 209f9dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
9 changes: 1 addition & 8 deletions examples/vue-app/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const chainOptions = computed(() =>
chainConfigs[formData.value.chainNamespace as ChainNamespaceType].map((x) => ({
name: `${x.chainId} ${x.tickerName}`,
value: x.chainId,
}))
})),
);
const privateKeyProvider = computed<IBaseProvider<string> | null>(() => {
Expand Down Expand Up @@ -293,13 +293,6 @@ const onSignAllTransactions = async () => {
Login with passkey
</Button>
</div>
<div class="text-base text-app-gray-900 dark:text-app-gray-200 font-medium mt-4 mb-5 px-0">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever
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
five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the
release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker
including versions of Lorem Ipsum.
</div>
</Card>
</div>
<div v-else class="grid gap-0">
Expand Down
4 changes: 2 additions & 2 deletions examples/vue-app/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ export type FormData = {
chain: string;
};

export const networkOptions = Object.values(WEB3AUTH_NETWORK).map((x) => ({ name: x, value: x }));
export const networkOptions = [WEB3AUTH_NETWORK.TESTNET, WEB3AUTH_NETWORK.SAPPHIRE_DEVNET].map((x) => ({ name: x, value: x }));

export const chainNamespaceOptions = Object.values(CHAIN_NAMESPACES).map((x) => ({ name: x, value: x }));
export const chainNamespaceOptions = [CHAIN_NAMESPACES.EIP155, CHAIN_NAMESPACES.SOLANA].map((x) => ({ name: x, value: x }));

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

0 comments on commit 209f9dd

Please sign in to comment.