Skip to content

Commit dd737fc

Browse files
committed
updates demo app heading
1 parent 2f3c047 commit dd737fc

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

examples/vue-example/src/App.vue

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</div>
1010
<div id="navbar-sticky" class="items-center justify-between w-full md:flex md:w-auto md:order-1">
1111
<div class="max-sm:w-full">
12-
<h1 class="leading-tight text-3xl font-extrabold">demo-auth.web3auth.io</h1>
12+
<h1 class="leading-tight text-3xl font-extrabold">demo-auth-v10.web3auth.io</h1>
1313
<p v-if="privKey" class="leading-tight text-1xl">Web3Auth Private key : {{ privKey }}</p>
1414
</div>
1515
</div>
@@ -223,7 +223,15 @@
223223
:label-disabled="'Whitelabel'"
224224
:label-enabled="'Whitelabel'"
225225
/>
226-
<Toggle id="includeUserDataInToken" v-model="includeUserDataInToken" :show-label="true" :size="'small'" :label-disabled="'Include User Data in Token'" :label-enabled="'Include User Data in Token'" data-testid="includeUserDataInToken" />
226+
<Toggle
227+
id="includeUserDataInToken"
228+
v-model="includeUserDataInToken"
229+
:show-label="true"
230+
:size="'small'"
231+
:label-disabled="'Include User Data in Token'"
232+
:label-enabled="'Include User Data in Token'"
233+
data-testid="includeUserDataInToken"
234+
/>
227235
</div>
228236
<div>
229237
<div>
@@ -823,7 +831,9 @@ const printToConsole = (...args: unknown[]) => {
823831
}
824832
};
825833
826-
const computedLoginProviders = computed(() => Object.values(AUTH_CONNECTION).filter((x) => x !== "custom" && x !== "passkeys" && x !== "authenticator"));
834+
const computedLoginProviders = computed(() =>
835+
Object.values(AUTH_CONNECTION).filter((x) => x !== "custom" && x !== "passkeys" && x !== "authenticator"),
836+
);
827837
828838
const showEmailFlow = computed(() => selectedLoginProvider.value === AUTH_CONNECTION.EMAIL_PASSWORDLESS);
829839
const isLoginHintAvailable = computed(() => {

0 commit comments

Comments
 (0)