From 81e907f4c158502118e79f6045a115a50c4019d3 Mon Sep 17 00:00:00 2001 From: Michael Render Date: Tue, 7 May 2024 17:34:55 -0400 Subject: [PATCH] docs(dotnet): fix isMobile in snippet (#30699) --- docs/src/emulation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/emulation.md b/docs/src/emulation.md index ad709cc308..d1f7bc3400 100644 --- a/docs/src/emulation.md +++ b/docs/src/emulation.md @@ -283,7 +283,7 @@ context = browser.new_context( ```csharp await using var context = await browser.NewContextAsync(new() { - IsMobile = new IsMoble() { false } + IsMobile = false }); ```