Skip to content

Commit b46d053

Browse files
committed
fix lint
1 parent d1fa76c commit b46d053

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/@react-aria/test-utils/src/dialog.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ export class DialogTester {
8888
} else {
8989
let dialog;
9090
await waitFor(() => {
91-
dialog = document.querySelector(`[role=dialog], [role=alertdialog]`);
91+
dialog = document.querySelector('[role=dialog], [role=alertdialog]');
9292
if (dialog == null) {
93-
throw new Error(`No dialog of type role="dialog" or role="alertdialog" found after pressing the trigger.`);
93+
throw new Error('No dialog of type role="dialog" or role="alertdialog" found after pressing the trigger.');
9494
} else {
9595
return true;
9696
}

0 commit comments

Comments
 (0)