From ea4462e2e09246165f8ba0eb552a2fd10c377187 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnier Date: Sun, 24 May 2026 00:57:12 +0200 Subject: [PATCH] Fix: Correct CSS class selector in StripOverlayLayer Changed selector from '.scrying-pool__roster-strip' to '.scrying-pool-strip' to match the actual CSS class defined in ScryingPoolStrip.defaultOptions. This was the root cause of the warning: 'StripOverlayLayer: ScryingPoolStrip not found' The class name in ScryingPoolStrip is 'scrying-pool-strip' (set in defaultOptions), not 'scrying-pool__roster-strip'. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe --- src/ui/shared/StripOverlayLayer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/shared/StripOverlayLayer.js b/src/ui/shared/StripOverlayLayer.js index 29e31dc..33868b3 100644 --- a/src/ui/shared/StripOverlayLayer.js +++ b/src/ui/shared/StripOverlayLayer.js @@ -51,8 +51,8 @@ export class StripOverlayLayer { `; // Try to find the ScryingPoolStrip element to append to - // The strip is created in Story 1.5 as a floating ApplicationV2 window - const stripElement = document.querySelector?.('.scrying-pool__roster-strip'); + // The strip is created in Story 1.5 as a floating Application window + const stripElement = document.querySelector?.('.scrying-pool-strip'); if (stripElement) { stripElement.appendChild(this._element); } else {