Skip to content
Snippets Groups Projects
Unverified Commit 1fd7a04f authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

Fix typo in password reset email template (#30348) (#30388)


* Fix typo in password_reset.mustache

* Rename "becase" to "because"

[ci skip]

Co-authored-by: default avatarKartikeya <42073497+fathomer@users.noreply.github.com>
parent faca0936
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,7 @@ function question(
if (loadMetadata || visitQuestion) {
dataset
? cy.intercept("POST", `/api/dataset`).as("dataset")
: // We need to use the wildcard becase endpoint for pivot tables has the following format: `/api/card/pivot/${id}/query`
: // We need to use the wildcard because endpoint for pivot tables has the following format: `/api/card/pivot/${id}/query`
cy
.intercept("POST", `/api/card/**/${body.id}/query`)
.as(interceptAlias);
......
......@@ -124,7 +124,7 @@ export function visitQuestion(id) {
// In case we use this function multiple times in a test, make sure aliases are unique for each question
const alias = "cardQuery" + id;
// We need to use the wildcard becase endpoint for pivot tables has the following format: `/api/card/pivot/${id}/query`
// We need to use the wildcard because endpoint for pivot tables has the following format: `/api/card/pivot/${id}/query`
cy.intercept("POST", `/api/card/**/${id}/query`).as(alias);
cy.visit(`/question/${id}`);
......
......@@ -6,7 +6,7 @@
{{/google}}
{{^google}}
{{#nonGoogleSSO}}
<p>We can't reset your password becase you're using single sign-on to log in to {{applicationName}}. Use the
<p>We can't reset your password because you're using single sign-on to log in to {{applicationName}}. Use the
"Sign in with SSO" button on the log in page. To change your password, you'll need to contact an administrator.</p>
<a href="{{siteUrl}}">Go to {{applicationName}}</a>
{{/nonGoogleSSO}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment