Refine admin login flow and verification harness
TaxBaik CI/CD / build-and-deploy (push) Successful in 2m21s

This commit is contained in:
2026-07-07 14:38:30 +09:00
parent b7cb442937
commit 35842b6765
60 changed files with 1043 additions and 495 deletions
@@ -39,7 +39,7 @@ else
public int Id { get; set; }
private Domain.Entities.Inquiry? inquiry;
private InquiryForm.InquiryFormModel? formModel;
private InquiryFormModel? formModel;
private bool isLoading = true;
private RenderFragment EditorSkeleton => builder =>
@@ -57,7 +57,7 @@ else
inquiry = await InquiryClient.GetByIdAsync(Id);
if (inquiry != null)
{
formModel = new InquiryForm.InquiryFormModel
formModel = new InquiryFormModel
{
Name = inquiry.Name,
Phone = inquiry.Phone,
@@ -84,7 +84,7 @@ else
Navigation.NavigateTo("/taxbaik/admin/inquiries");
}
private async Task HandleUpdate(InquiryForm.InquiryFormModel model)
private async Task HandleUpdate(InquiryFormModel model)
{
if (inquiry == null)
return;
@@ -109,7 +109,7 @@ else
}
inquiry = updated;
formModel = new InquiryForm.InquiryFormModel
formModel = new InquiryFormModel
{
Name = inquiry.Name,
Phone = inquiry.Phone,