diff options
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/App.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/App.tsx b/src/client/App.tsx index ad1e230..e131d94 100644 --- a/src/client/App.tsx +++ b/src/client/App.tsx @@ -8,7 +8,6 @@ type UiState = 'initial' | 'waiting' | 'success' | 'failed'; interface ResultData { address?: string; // Present on success error?: string; // Present on failure - addressType?: string; // Added later } function App() { @@ -169,6 +168,7 @@ function App() { {isLoading ? 'Generating QR...' : 'Sign in with Digi-ID'} </span> </button> + {error && <p className="error-message">Reason: {error}</p>} </div> )} |
