docs(dotnet): fix isMobile in snippet (#30699)

This commit is contained in:
Michael Render 2024-05-07 17:34:55 -04:00 committed by GitHub
parent 0164dca302
commit 81e907f4c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -283,7 +283,7 @@ context = browser.new_context(
```csharp ```csharp
await using var context = await browser.NewContextAsync(new() await using var context = await browser.NewContextAsync(new()
{ {
IsMobile = new IsMoble() { false } IsMobile = false
}); });
``` ```