REMOVE DELAY WHILE TYPING ON LIVE() and AFTERSTATEUPDATED()

Forms\Components\TextInput::make('firstname')
->required(true)
->maxLength(50)
->label('First Name')
->placeholder('First Name')
->live()
->afterStateUpdated(fn ($state, callable $set, $get) => $set('fullname', static::generateFullName($state, $get('middlename'), $get('lastname'), $get('extensionname')))),


how can i remove the delay while typing on textinput on live() and ->afterStateUpdated()
Was this page helpful?