public async Task <IActionResult> OnGetProofStatusAsync(string proofId)
        {
            ProofState state = await _passportService.GetProofState(proofId);

            if (state == ProofState.Accepted)
            {
                return(new JsonResult(true));
            }
            else
            {
                return(new JsonResult(false));
            }
        }