Skip to content

Commit

Permalink
fix docs and build point
Browse files Browse the repository at this point in the history
  • Loading branch information
LFDanLu committed Apr 18, 2024
1 parent bcda574 commit 51c0270
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/@react-aria/test-utils/src/select.ts
Expand Up @@ -15,7 +15,8 @@ import {act, waitFor, within} from '@testing-library/react';
type InteractionType = 'mouse' | 'touch' | 'keyboard'

interface SelectOptions {
user, // I think the type grabbed from the testing library dist for UserEvent is breaking the build, will need to figure out a better place to grab from
// I think the type grabbed from the testing library dist for UserEvent is breaking the build, will need to figure out a better place to grab from
user: any,
interactionType?: InteractionType
}
export class SelectTester {
Expand Down
2 changes: 1 addition & 1 deletion packages/@react-aria/test-utils/src/table.ts
Expand Up @@ -15,7 +15,7 @@ import {act, fireEvent, waitFor, within} from '@testing-library/react';
type InteractionType = 'mouse' | 'touch' | 'keyboard'

interface TableOptions {
user,
user: any,
interactionType?: InteractionType
}

Expand Down

0 comments on commit 51c0270

Please sign in to comment.