You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PromptForMessagingEndpointAsync was declared async but contains no await operators (it only performs synchronous console I/O), producing CS1998 introduced by PR 440. Remove the async modifier and return values via Task.FromResult, preserving the Task<string?> signature so the caller's await is unchanged.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments