diff --git a/apps/e2e/tests/authentication/auth.po.ts b/apps/e2e/tests/authentication/auth.po.ts index 1b0342005..4767ef65b 100644 --- a/apps/e2e/tests/authentication/auth.po.ts +++ b/apps/e2e/tests/authentication/auth.po.ts @@ -1,4 +1,4 @@ -import { Page } from '@playwright/test'; +import { expect, Page } from '@playwright/test'; import { Mailbox } from '../utils/mailbox'; export class AuthPageObject { @@ -50,7 +50,11 @@ export class AuthPageObject { async visitConfirmEmailLink(email: string) { await this.page.waitForTimeout(300); - await this.mailbox.visitMailbox(email); + return expect(async() => { + const res = await this.mailbox.visitMailbox(email); + + expect(res).not.toBeNull(); + }).toPass(); } createRandomEmail() { diff --git a/apps/web/app/(marketing)/_components/site-footer.tsx b/apps/web/app/(marketing)/_components/site-footer.tsx index 279cedaec..5d775f23c 100644 --- a/apps/web/app/(marketing)/_components/site-footer.tsx +++ b/apps/web/app/(marketing)/_components/site-footer.tsx @@ -14,7 +14,7 @@ export function SiteFooter() {
@@ -23,16 +23,18 @@ export function SiteFooter() {
-
-

- Add a short tagline about your product -

-
+
+
+

+ Add a short tagline about your product +

+
-
-

- © Copyright {YEAR} {appConfig.name}. All Rights Reserved. -

+
+

+ © Copyright {YEAR} {appConfig.name}. All Rights Reserved. +

+
diff --git a/apps/web/app/(marketing)/_components/site-header-account-section.tsx b/apps/web/app/(marketing)/_components/site-header-account-section.tsx index ba53860b4..07db7617b 100644 --- a/apps/web/app/(marketing)/_components/site-header-account-section.tsx +++ b/apps/web/app/(marketing)/_components/site-header-account-section.tsx @@ -56,7 +56,7 @@ function SuspendedPersonalAccountDropdown(props: { user: User | null }) { function AuthButtons() { return ( -
+