Skip to content

Commit 9931698

Browse files
committed
Fix warning
1 parent 6da64d5 commit 9931698

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-test/net9-maui/MauiProgram.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static MauiApp CreateMauiApp()
2323

2424
options.SetBeforeBreadcrumb((breadcrumb, hint) =>
2525
{
26-
if (breadcrumb.Data?.TryGetValue("action", out string action) == true && App.HasTestArg(action))
26+
if (breadcrumb.Data?.TryGetValue("action", out var action) == true && App.HasTestArg(action))
2727
{
2828
SentrySdk.CaptureMessage(action, scope =>
2929
{

0 commit comments

Comments
 (0)