Skip to content

Commit 528c58b

Browse files
author
Protik Biswas
committed
fixing linting issue
1 parent fcd447b commit 528c58b

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
@@ -542,7 +542,7 @@ void WindowsTextInputComponentView::HandleCommand(
542542

543543
winrt::Microsoft::ReactNative::ReadArgs(args.CommandArgs(), eventCount, text, begin, end);
544544
// Only accept text updates that match the current native event count
545-
// This prevents race conditions and maintains proper state synchronization
545+
// This prevents race conditions and maintains proper state synchronization
546546
if (eventCount >= m_nativeEventCount) {
547547
m_comingFromJS = true;
548548
{
@@ -959,7 +959,7 @@ void WindowsTextInputComponentView::OnCharacterReceived(
959959
// Don't increment event count yet - let JS respond with current count first
960960
onSubmitEditingArgs.eventCount = m_nativeEventCount;
961961
emitter->onSubmitEditing(onSubmitEditingArgs);
962-
962+
963963
// Increment after emitting to allow JS to respond with matching count
964964
++m_nativeEventCount;
965965
}

0 commit comments

Comments
 (0)