This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: format

+14 -18
+10 -2
src/webapp/app/(dashboard)/url/page.tsx
··· 7 7 import SembleContainerSkeleton from '@/features/semble/containers/sembleContainer/Skeleton.SembleContainer'; 8 8 9 9 interface Props { 10 - searchParams: Promise<{ id: string | undefined; viaCardId?: string; sembleTab?: string }>; 10 + searchParams: Promise<{ 11 + id: string | undefined; 12 + viaCardId?: string; 13 + sembleTab?: string; 14 + }>; 11 15 } 12 16 13 17 export async function generateMetadata({ 14 18 searchParams, 15 19 }: { 16 - searchParams: Promise<{ id: string | undefined; viaCardId?: string; sembleTab?: string }>; 20 + searchParams: Promise<{ 21 + id: string | undefined; 22 + viaCardId?: string; 23 + sembleTab?: string; 24 + }>; 17 25 }): Promise<Metadata> { 18 26 const { id: url } = await searchParams; 19 27
+1 -6
src/webapp/e2e/auth-redirect.spec.ts
··· 7 7 * /settings/* and /profile (bare) redirect via the client-side useAuth fallback. 8 8 */ 9 9 10 - const protectedRoutes = [ 11 - '/home', 12 - '/notifications', 13 - '/settings', 14 - '/profile', 15 - ]; 10 + const protectedRoutes = ['/home', '/notifications', '/settings', '/profile']; 16 11 17 12 for (const route of protectedRoutes) { 18 13 test(`unauthenticated ${route} redirects to /login`, async ({ page }) => {
+3 -10
src/webapp/e2e/landing-page.spec.ts
··· 25 25 }); 26 26 27 27 test('renders community highlights section', async ({ page }) => { 28 - await expect( 29 - page.getByText('Highlights from our community'), 30 - ).toBeVisible(); 28 + await expect(page.getByText('Highlights from our community')).toBeVisible(); 31 29 32 - await expect( 33 - page.getByRole('link', { name: 'Explore' }), 34 - ).toBeVisible(); 30 + await expect(page.getByRole('link', { name: 'Explore' })).toBeVisible(); 35 31 }); 36 - 37 32 38 33 test('renders footer with social and doc links', async ({ page }) => { 39 34 await expect( 40 35 page.getByRole('link', { name: 'Follow our blog' }), 41 36 ).toBeVisible(); 42 - await expect( 43 - page.getByRole('link', { name: 'Semble Docs' }), 44 - ).toBeVisible(); 37 + await expect(page.getByRole('link', { name: 'Semble Docs' })).toBeVisible(); 45 38 }); 46 39 });