Skip to content

Commit 6c641a5

Browse files
authored
fix: remove maybescroll console debug (#1053)
## 📜 Description Removed a redundant console.debug statement from the library that was unnecessarily polluting the logs. This is the only one in the code so I suppose it was a development log that has not been deleted. ## 💡 Motivation and Context No functional or behavioral changes were made to the codebase. This is purely a logging cleanup. ## 📢 Changelog ### JS • Removed noisy console.debug statement from the library. ## 🤔 How Has This Been Tested? The change was tested manually by running the application and confirming that: • The noisy debug message no longer appears in the console. • All existing functionality continues to work as expected. • No errors or regressions were introduced. Unit tests were not affected as this change does not alter any logic or data flow. ## 📸 Screenshots (if appropriate): ## 📝 Checklist - [x] CI successfully passed - [x] I added new mocks and corresponding unit-tests if library API was changed
1 parent e736db9 commit 6c641a5

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

  • src/components/KeyboardAwareScrollView

src/components/KeyboardAwareScrollView/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,6 @@ const KeyboardAwareScrollView = forwardRef<
264264
}, [maybeScroll]);
265265
const onChangeText = useCallback(() => {
266266
"worklet";
267-
268-
console.debug("maybeScroll - onChangeText");
269267
scrollFromCurrentPosition();
270268
}, [scrollFromCurrentPosition]);
271269
const onChangeTextHandler = useMemo(

0 commit comments

Comments
 (0)