From 0c4a052b7decdd14aadabae4d4d3005aa268205d Mon Sep 17 00:00:00 2001 From: GODrums Date: Mon, 31 Aug 2026 23:16:54 +0200 Subject: [PATCH] fix(market): update selector to include listings without screenshot --- src/lib/components/market/react/listing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/market/react/listing.ts b/src/lib/components/market/react/listing.ts index 9955b2ed..6f73b375 100644 --- a/src/lib/components/market/react/listing.ts +++ b/src/lib/components/market/react/listing.ts @@ -14,7 +14,7 @@ export interface ReactListingContext { } export const ReactMarketListingScope = defineInjectionScope({ - selector: 'div[style*="--grid-rows"]:has([style*="market_listings/"])', + selector: 'div[style*="--grid-rows"]:has([style*="market_listings/"], [style*="economy/image/"])', mode: InjectionMode.CONTINUOUS, guard: isReactSteamMarket, context: buildReactListingContext,