Fix incorrect quotes

This commit is contained in:
HarelM
2026-07-09 14:19:47 +03:00
parent 56a9840def
commit 8580499ec3
+1 -1
View File
@@ -331,7 +331,7 @@ describe("layers list", () => {
test("should keep header visible when scrolling layer list", async () => {
// Setup: Create multiple layers to enable scrolling
// The modal is already open (beforeEach) for the first layer.
await when.modal.fillLayers({ id: `layer-0`, type: "background" });
await when.modal.fillLayers({ id: "layer-0", type: "background" });
for (let i = 1; i < 20; i++) {
await when.modal.open();
await when.modal.fillLayers({ id: `layer-${i}`, type: "background" });