Implement navigation for CreateEnvelope method

Replaced the placeholder console log in the `CreateEnvelope` method with actual navigation functionality. The method now uses `Navigation.NavigateTo` to redirect users to the `/sender/editor` page, enabling the intended behavior for creating envelopes.
This commit is contained in:
2026-07-01 15:43:26 +02:00
parent d94821433a
commit 8f451b9c2c

View File

@@ -385,8 +385,7 @@
void CreateEnvelope() void CreateEnvelope()
{ {
// TODO: Navigate to envelope creation page Navigation.NavigateTo("/sender/editor");
JSRuntime.InvokeVoidAsync("console.log", "Create envelope clicked - not yet implemented");
} }
void EditEnvelope() void EditEnvelope()