From 46887579e465343c093dcf040a389e0ac7cd8517 Mon Sep 17 00:00:00 2001 From: aknous Date: Tue, 18 Mar 2025 12:35:13 -0400 Subject: [PATCH] feat: simplifies IHasOsd ShowWebView method signature --- .../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 278c3e13..4c36ce4a 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 { - void ShowWebView(string url, string mobileControlPath, string mode, string title, string target); + void ShowWebView(string url, string mode, string title, string target); void HideWebView(); } }