Skip to content

Commit

Permalink
Exclamation mark at login page
Browse files Browse the repository at this point in the history
  • Loading branch information
waltkb committed Jan 15, 2025
1 parent fb2d062 commit 5812a26
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,8 @@
<NuxtLink
class="font-medium text-blue-600 hover:text-blue-500"
to="/signup"
>sign up for your SSI wallet
</NuxtLink
>
!
>sign up for your SSI wallet!
</NuxtLink>
</p>
<p v-if="isOidcLogin" class="flex items-center">
<!-- <LoadingIndicator> OIDC Login processing... </LoadingIndicator>-->
Expand Down Expand Up @@ -407,7 +405,7 @@ async function login() {
{ email: emailInput, password: passwordInput, type: "email" },
{ callbackUrl: signInRedirectUrl.value }
)
.then(() =>{
.then(() => {
user.value = {
id: "",
friendlyName: userData.email
Expand Down Expand Up @@ -488,7 +486,7 @@ async function openWeb3() {
const result = await verificationResponse.json();
console.log("Verification result: ", result);
await authnzLogin(address, result.token)
await authnzLogin(address, result.token);
}
definePageMeta({
Expand Down

0 comments on commit 5812a26

Please sign in to comment.