diff --git a/src/TaxBaik.Web.Client/Components/Admin/Pages/Inquiries/InquiryCreate.razor b/src/TaxBaik.Web.Client/Components/Admin/Pages/Inquiries/InquiryCreate.razor index beb8e52..545f16d 100644 --- a/src/TaxBaik.Web.Client/Components/Admin/Pages/Inquiries/InquiryCreate.razor +++ b/src/TaxBaik.Web.Client/Components/Admin/Pages/Inquiries/InquiryCreate.razor @@ -36,7 +36,7 @@ Email = model.Email, ServiceType = model.ServiceType, Message = model.Message, - SuppressNotification = true + SuppressNotification = false }); if (result == null) @@ -45,7 +45,9 @@ return; } - Snackbar.Add("문의가 등록되었습니다.", Severity.Success); + Snackbar.Add("✅ 문의가 등록되었고 고객에게 알림이 발송되었습니다.", Severity.Success); + // 사용자가 성공 메시지를 볼 수 있도록 3초 후에 목록으로 이동 + await Task.Delay(3000); Navigation.NavigateTo("/taxbaik/admin/inquiries"); } catch (ValidationException ex)