1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-17 14:18:17 +01:00

fix: account activity title (#5483)

This commit is contained in:
Arik Chakma 2024-04-10 04:10:51 +06:00 committed by GitHub
parent c768cac62f
commit ed6f4b64a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,8 +4,12 @@ import { ActivityPage } from '../../components/Activity/ActivityPage';
import AccountLayout from '../../layouts/AccountLayout.astro';
---
<AccountLayout title='Update Profile' noIndex={true} initialLoadingMessage={'Loading activity'}>
<AccountLayout
title='Activity'
noIndex={true}
initialLoadingMessage={'Loading activity'}
>
<AccountSidebar activePageId='activity' activePageTitle='Activity'>
<ActivityPage client:only="react" />
<ActivityPage client:only='react' />
</AccountSidebar>
</AccountLayout>