Skip to content

Commit

Permalink
chore: Automated dotnet-format update
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 29, 2023
1 parent ca46112 commit a26d61e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public virtual void OnLoadComplete()
items = items.Where(x => !unusedEnums.Contains(x)).ToArray();
var res = await Page.DisplayActionSheet(title, "Close", null, items);
if (items.Contains(res))
return (true, (TEnum)Enum.Parse(typeof(TEnum),res));
return (true, (TEnum)Enum.Parse(typeof(TEnum), res));
return (false, default);
}

Expand Down

0 comments on commit a26d61e

Please sign in to comment.