Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nesrineabdmouleh committed May 22, 2024
1 parent 39998b4 commit 5d5be36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interfaces/BO/orders/view/productsBlock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface BOProductBlockPageInterface extends BOBasePagePageInterface {
selectFreeShippingCheckbox(page: Page): Promise<void>;
addQuantity(page: Page, quantity: number): Promise<void>;
updateProductPrice(page: Page, price: number): Promise<void>;
addProductToCart(page: Page, quantity: number = 1, createNewInvoice: boolean = false): Promise<string | null>;
addProductToCart(page: Page, quantity: number, createNewInvoice: boolean): Promise<string | null>;
cancelAddProductToCart(page: Page): Promise<void>;
isAddButtonDisabled(page: Page): Promise<boolean>;
isAddProductTableRowVisible(page: Page): Promise<boolean>;
Expand Down

0 comments on commit 5d5be36

Please sign in to comment.