diff --git a/e2e/helpers.ts b/e2e/helpers.ts index 8682e81a..d5d3cebe 100644 --- a/e2e/helpers.ts +++ b/e2e/helpers.ts @@ -25,7 +25,7 @@ export function totpNow(secret: string): string { } /** Selector for the dashboard - only present in EditorLayout, not on login/setup pages */ -const DASHBOARD_INDICATOR = 'img[alt="Sencho Logo"]'; +const DASHBOARD_INDICATOR = 'img[src*="sencho-logo"]'; /** Returns true if the current page is the first-run setup screen */ async function isSetupPage(page: Page): Promise { diff --git a/frontend/src/components/sidebar/SidebarBrand.tsx b/frontend/src/components/sidebar/SidebarBrand.tsx index 351f9b6e..29df6e6a 100644 --- a/frontend/src/components/sidebar/SidebarBrand.tsx +++ b/frontend/src/components/sidebar/SidebarBrand.tsx @@ -4,17 +4,17 @@ interface SidebarBrandProps { export function SidebarBrand({ isDarkMode }: SidebarBrandProps) { return ( -
+
Sencho Logo -
- - SENCHO ยท v{__APP_VERSION__} +
+ Sencho + + v{__APP_VERSION__} - Sencho
);