Skip to content

Commit

Permalink
Merge pull request #99 from sparrowapp-dev/fix/fixes-ui-login-issue
Browse files Browse the repository at this point in the history
Fix; Fixed text bug
  • Loading branch information
Astitva877 authored Dec 18, 2024
2 parents 00f970e + 8919174 commit e2c495d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/Auth/entry-point/EntryPoint.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
: 'border-default'}"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Enter your email addresss"
placeholder="Enter your email address"
autocorrect="off"
autocapitalize="none"
autocomplete="off"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Auth/verify-magic-code/verify-magic-code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const isSuccessfulResponseMagicCode = writable(false);
export const handleVerifyUserEmail = async (verifyCodeCredential: verifyMagicCodePostBody) => {

const response = await verifyMagicCode(verifyCodeCredential);
if (response.isSuccessful) {
if (response.isSuccessful) {
errorMessageTextMagicCode.set("");
isSuccessfulResponseMagicCode.set(false); // Ensure this is set to false on success
} else {
Expand Down

0 comments on commit e2c495d

Please sign in to comment.