From 2c28b578068047091d8619d03ac5fc412bce0c6b Mon Sep 17 00:00:00 2001 From: aknous Date: Thu, 20 Mar 2025 00:42:30 -0400 Subject: [PATCH] fix: removes public access modifier from WebviewIsVisible prop --- .../DeviceTypeInterfaces/IHasWebView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs index 3ed9871a..f89624b0 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs @@ -8,7 +8,7 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces { public interface IHasWebView { - public bool WebviewIsVisible { get; } + bool WebviewIsVisible { get; } void ShowWebView(string url, string mode, string title, string target); void HideWebView(); }