From c72d92186693a8b71392d2fe7f2b0348b382f1b9 Mon Sep 17 00:00:00 2001 From: Laurent Nguyen Date: Thu, 20 Nov 2025 15:02:32 +0100 Subject: [PATCH] fix: for fabric, don't display Querying offer for collection. (#2259) Co-authored-by: Laurent Nguyen --- src/Common/dataAccess/readCollectionOffer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Common/dataAccess/readCollectionOffer.ts b/src/Common/dataAccess/readCollectionOffer.ts index d3c8e25cd..6712f274b 100644 --- a/src/Common/dataAccess/readCollectionOffer.ts +++ b/src/Common/dataAccess/readCollectionOffer.ts @@ -12,13 +12,13 @@ import { handleError } from "../ErrorHandlingUtils"; import { readOfferWithSDK } from "./readOfferWithSDK"; export const readCollectionOffer = async (params: ReadCollectionOfferParams): Promise => { - const clearMessage = logConsoleProgress(`Querying offer for collection ${params.collectionId}`); - if (isFabric()) { // Not exposing offers in Fabric return undefined; } + const clearMessage = logConsoleProgress(`Querying offer for collection ${params.collectionId}`); + try { if ( userContext.authType === AuthType.AAD &&