Skip to content

Commit

Permalink
Unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
volkanceylan committed Dec 22, 2024
1 parent c668ba9 commit a7b5121
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Decorators, Fluent, confirmDialog, faIcon, gridPageInit, htmlEncode, localText } from "@serenity-is/corelib";
import { CustomerGrid, CustomerService, OrderDialog, OrderRow } from "@serenity-is/demo.northwind";
import { Decorators, Fluent, confirmDialog, faIcon, gridPageInit, localText } from "@serenity-is/corelib";
import { CustomerGrid, CustomerService, OrderDialog } from "@serenity-is/demo.northwind";
import { Column } from "@serenity-is/sleekgrid";

export default () => gridPageInit(InlineActionGrid);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ vi.mock(import("@serenity-is/corelib"), async (importOriginal) => {
const actual = await importOriginal();
return {
...actual,
confirmDialog: vi.fn().mockImplementation((msg, onYes) => onYes())
confirmDialog: vi.fn().mockImplementation((_, onYes) => onYes())
}
});

Expand Down

0 comments on commit a7b5121

Please # to comment.