File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
features/onboarding/steps Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ export const EditTag = ({
3333 const isPreviewEnabled = tagsCount >= requiredTags ;
3434
3535 const [ searchQuery , setSearchQuery ] = useState < string > ( '' ) ;
36- const [ onSearch ] = useDebounceFn ( setSearchQuery , 200 ) ;
36+ const [ onSearch ] = useDebounceFn ( ( value : string ) => {
37+ setSearchQuery ( value ) ;
38+ } , 350 ) ;
3739
3840 const { data : searchResult } = useTagSearch ( {
3941 value : searchQuery ,
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ function FunnelEditTagsComponent({
3939 'opacity-0' : isDisabled ,
4040 'pointer-events-none' : isDisabled ,
4141 } ) }
42- containerClassName = "flex w-full flex-1 flex-col items-center justify-center overflow-hidden"
42+ containerClassName = "flex w-full flex-1 flex-col items-center laptop: justify-center overflow-hidden"
4343 >
4444 < div className = "flex w-full flex-col items-center gap-6 p-6 pt-10 tablet:max-w-md laptop:max-w-screen-laptop" >
4545 < EditTag
You can’t perform that action at this time.
0 commit comments