Skip to content

Commit

Permalink
Merge pull request #71 from sparrowapp-dev/astitva/sheet-bugs
Browse files Browse the repository at this point in the history
fix: UI bugs []
  • Loading branch information
Astitva877 authored Oct 18, 2024
2 parents 614b36c + 5a901b9 commit 4884d01
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/pages/Auth/forgot-password/ForgotPassword.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</div>
<div class="mb-3">
<div>
<label for="exampleInputEmail1" class="form-label text-lightGray sparrow-fs-14 d-flex">Email<p class="ms-1 mb-0 sparrow-fw-600 text-dangerColor">*</p></label>
<label for="exampleInputEmail1" class="form-label text-lightGray sparrow-fs-14 d-flex">Email ID<p class="ms-1 mb-0 sparrow-fw-600 text-dangerColor">*</p></label>
</div>
<input
type="email"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Auth/oauth-redirect/OauthRedirect.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
onMount(() => {
const urlParams = new URLSearchParams(window.location.search);
const accessToken = urlParams.get('accessToken');
const refreshToken = urlParams.get('refreshToken');
const refreshToken = urlParams.get('refreshToken');
const source = urlParams.get('source');
const sparrowRedirect = `sparrow://?accessToken=${accessToken}&refreshToken=${refreshToken}&event=${source}&method=google`;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Auth/reset-password/ResetPassword.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@

<div class="form-group mb-1 text-lightGray">
<div>
<label for="password" class="sparrow-fs-16">New Password</label>
<label for="password" class="sparrow-fs-16 d-flex">New Password <p class="ms-1 mb-0 sparrow-fw-600 text-dangerColor">*</p></label>
</div>
<div class="d-flex position-relative">
<input
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Auth/verify-email/verify-email.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ export const isSuccessfulResponse = writable(false);
import { writable } from 'svelte/store';

export const handleVerifyUserEmail = async (verifyCodeCredential: verifyPostbody) => {
const response = await verifyUserEmail(verifyCodeCredential);
if (response.isSuccessful) {
const response = await verifyUserEmail(verifyCodeCredential);
if (response.isSuccessful) {
errorMessageText.set("");
} else {
} else {
isSuccessfulResponse.set(true);
if (response.message === 'verificationCode should not be empty') {
errorMessageText.set('Please enter the 6-digit verification code.');
Expand Down

0 comments on commit 4884d01

Please sign in to comment.