File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/docs/src/remix-hook-form Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -511,7 +511,7 @@ export const CreatableOption: Story = {
511511 const regionSelect = canvas . getByLabelText ( 'Custom Region' ) ;
512512 await userEvent . click ( regionSelect ) ;
513513 // Add a small delay to ensure the dropdown has time to render
514- await new Promise ( resolve => setTimeout ( resolve , 100 ) ) ;
514+ await new Promise ( ( resolve ) => setTimeout ( resolve , 100 ) ) ;
515515 const listbox = await within ( document . body ) . findByRole ( 'listbox' ) ;
516516 // The search input is outside the listbox container; query from the portal root
517517 const input = within ( document . body ) . getByPlaceholderText ( 'Search...' ) ;
@@ -534,7 +534,7 @@ export const CreatableOption: Story = {
534534 const regionSelect = canvas . getByLabelText ( 'Custom Region' ) ;
535535 await userEvent . click ( regionSelect ) ;
536536 // Add a small delay to ensure the dropdown has time to render
537- await new Promise ( resolve => setTimeout ( resolve , 100 ) ) ;
537+ await new Promise ( ( resolve ) => setTimeout ( resolve , 100 ) ) ;
538538 const listbox = await within ( document . body ) . findByRole ( 'listbox' ) ;
539539 // The search input is outside the listbox container; query from the portal root
540540 const input = within ( document . body ) . getByPlaceholderText ( 'Search...' ) ;
You can’t perform that action at this time.
0 commit comments