Skip to content

Commit

Permalink
build: version release v5.8.11
Browse files Browse the repository at this point in the history
  • Loading branch information
obender committed Nov 8, 2024
1 parent c1650e8 commit e49f468
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "safe-deal",
"private": true,
"version": "5.8.10",
"version": "5.8.11",
"author": "Safe Deal",
"license": "MIT",
"description": "Safe Deal Extension",
Expand Down
3 changes: 1 addition & 2 deletions src/e-commerce/client/components/toolbar/FloatingToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,8 @@ export const FloatingToolbar: React.FC<FloatingToolbarProps> = ({ Minimal, Full,
</div>
</Tooltips>
);
} else {
return <MinimalWrapper>{Minimal}</MinimalWrapper>;
}
return <MinimalWrapper>{Minimal}</MinimalWrapper>;

default:
return null;
Expand Down
2 changes: 1 addition & 1 deletion src/e-commerce/engine/logic/site/display-site-factory.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { debug } from "@utils/analytics/logger";
import { DONE_PRODUCT_CONTAINER_CSS_CLASS, LOADER_ELEMENT_ID } from "../../../../constants/display";
import { IConclusionResponse } from "../../../../data/rules-conclusion/conclusion-response.interface";
import { Site } from "../../../../data/sites/site";
Expand All @@ -9,7 +10,6 @@ import { WalmartDisplaySiteFactory } from "../../stores/walmart/walmart-display-
import { ProductStore } from "../conclusion/conclusion-product-entity.interface";
import { SiteUtil } from "../utils/site-utils";
import { DisplaySite } from "./display-site";
import { debug } from "@utils/analytics/logger";

export class DisplaySiteFactory {
public create(conclusionResponse: IConclusionResponse): DisplaySite {
Expand Down
2 changes: 1 addition & 1 deletion src/e-commerce/worker/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export const initCommerce = async () => {
});
}
} catch (error) {
//error process product already being reported
// error process product already being reported
debug(error, "EcommerceWorker:: Error!");
}
});
Expand Down
6 changes: 2 additions & 4 deletions src/utils/paint/__tests__/paint-utils.test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import { PaintUtils } from "../paint-utils";
import tippy from "tippy.js";
import { PaintUtils } from "../paint-utils";

jest.mock("tippy.js", () => {
return jest.fn();
});
jest.mock("tippy.js", () => jest.fn());

jest.mock("../../../constants/messages", () => ({
t: jest.fn((key) => key),
Expand Down
2 changes: 1 addition & 1 deletion webpack/manifest_v2/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "__MSG_appName__",
"short_name": "__MSG_appNameShort__",
"version": "5.8.10",
"version": "5.8.11",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion webpack/manifest_v3/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "__MSG_appName__",
"short_name": "__MSG_appNameShort__",
"version": "5.8.10",
"version": "5.8.11",
"manifest_version": 3,
"description": "__MSG_appDescription__",
"icons": {
Expand Down

0 comments on commit e49f468

Please sign in to comment.