Add store location map manager #20

Open
nalalangan wants to merge 206 commits from feature/location-map-manager into feature/store-selector-modal
Showing only changes of commit 26b05d9729 - Show all commits

View File

@ -3968,6 +3968,11 @@ test("mobile editor pans from empty map space without moving areas", async ({ pa
await expect(bakeryArea).toHaveAttribute("x", "40");
await expect(bakeryArea).toHaveAttribute("y", "40");
const zoomIn = page.getByRole("button", { name: "Zoom in" });
await zoomIn.click();
await zoomIn.click();
await zoomIn.click();
const beforePan = await scroll.evaluate((element) => ({
left: element.scrollLeft,
top: element.scrollTop,