From 5dd66d54e346dbf671e5c72a4bb84c4d03243eed Mon Sep 17 00:00:00 2001
From: Christopher Hiller <boneskull@boneskull.com>
Date: Mon, 3 Apr 2023 14:30:18 -0700
Subject: [PATCH] fix(web): do not return `true` from deleteCookie()

If this is needed, we need to update the types in `ExternalDriver`.
---
 lib/commands/web.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/commands/web.js b/lib/commands/web.js
index 5afae14d1..6ee1fb505 100644
--- a/lib/commands/web.js
+++ b/lib/commands/web.js
@@ -272,7 +272,6 @@ const commands = {
     }
 
     await this._deleteCookie(cookie);
-    return true;
   },
   /**
    * @this {XCUITestDriver}