-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Description
Bug Report 🐛
I was trying to update the video renders count on the pricing page but the input field won't accept my typing. It keeps resetting to 0 as I type, which is unusual.
Steps to reproduce:
Go to https://www.remotion.dev pricing section
Try to type "2000" in the "Video renders" input field
Watch as it stays at 0 instead of showing what you're typing
Screen.Recording.2025-11-16.at.11.25.43.PM.mov
What's happening:
Type "2" → shows 0
Type "20" → still shows 0
Type "200" → still shows 0
Can't type the number I need
I have to click the up arrow button repeatedly which takes forever for large values like 100000.
Suggested fix:
Move the rounding/validation to onBlur instead of onChange so users can finish typing before the value gets validated. This would make the input actually usable for keyboard entry.
In Counter.tsx line 78-94, the input keeps resetting to 0, making it impossible to type the desired value. The fix would be to move this rounding logic to an onBlur handler instead of onChange.