Skip to content

Commit b9ff842

Browse files
author
Protik Biswas
committed
fixing linting error
1 parent c4ab9c0 commit b9ff842

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vnext/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -541,11 +541,11 @@ void WindowsTextInputComponentView::HandleCommand(
541541
std::optional<winrt::hstring> text;
542542

543543
winrt::Microsoft::ReactNative::ReadArgs(args.CommandArgs(), eventCount, text, begin, end);
544-
// Accept text updates that match current event count, or are within a reasonable
544+
// Accept text updates that match current event count, or are within a reasonable
545545
// tolerance for async JS responses to recent events (like onSubmitEditing)
546546
bool isCurrentEvent = eventCount >= m_nativeEventCount;
547547
bool isRecentAsyncResponse = (m_nativeEventCount - eventCount) <= 2; // Allow up to 2 events behind
548-
548+
549549
if (isCurrentEvent || isRecentAsyncResponse) {
550550
m_comingFromJS = true;
551551
{

0 commit comments

Comments
 (0)