From 6f12941e32fe141f260dd05bee66574cb0a78e86 Mon Sep 17 00:00:00 2001 From: Satindar Dhillon Date: Thu, 28 Apr 2022 15:01:05 -0700 Subject: [PATCH] udpate macos pdfviewer call --- apple/Sources/PDFViewer.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apple/Sources/PDFViewer.swift b/apple/Sources/PDFViewer.swift index 611b19c12..9bfff9d70 100644 --- a/apple/Sources/PDFViewer.swift +++ b/apple/Sources/PDFViewer.swift @@ -357,11 +357,11 @@ import Utils #elseif os(macOS) struct PDFViewer: View { - let pdfURL: URL + let remoteURL: URL let viewModel: PDFViewerViewModel var body: some View { - Text(pdfURL.absoluteString) + Text(remoteURL.absoluteString) } } #endif