Initialize _pdfLoaded and update _dotNetRef type

The `_pdfLoaded` variable was initialized to `false` in the `EnvelopeReceiver.razor` file. Additionally, the type of `_dotNetRef` was changed from `DotNetObjectReference<EnvelopeViewer>?` to `DotNetObjectReference<EnvelopeReceiver>?` to reflect the correct object reference.
This commit is contained in:
2026-06-11 10:49:31 +02:00
parent e3929a99e3
commit fb3ee14f8f

View File

@@ -511,7 +511,7 @@ int _totalPages = 0;
int _currentZoom = 150;
bool _showThumbnails = true;
bool _isLoggingOut = false;
DotNetObjectReference<EnvelopeViewer>? _dotNetRef;
DotNetObjectReference<EnvelopeReceiver>? _dotNetRef;
IReadOnlyList<SignatureDto> _signatures = [];
EnvelopeReceiverDto? _envelopeReceiver;