@page "/Account/Manage/PersonalData" @inject IdentityUserAccessor UserAccessor Personal Data

Personal Data

Your account contains personal data that you have given us. This page allows you to download or delete that data.

Deleting this data will permanently remove your account, and this cannot be recovered.

Delete

@code { [CascadingParameter] private HttpContext HttpContext { get; set; } = default!; protected override async Task OnInitializedAsync() { _ = await UserAccessor.GetRequiredUserAsync(HttpContext); } }