fix(sdk): remove duplicate marketplaceSupplierOrderActionResultSelector

The selector was declared twice with identical bodies in orderSelector.ts,
so `pnpm --filter @coopenomics/sdk build` failed with TS2451 (cannot
redeclare block-scoped variable). Latent because the SDK was not built
locally. Drop the second declaration.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
ant
2026-05-25 03:45:22 +00:00
parent e9667bce96
commit ef5467251b
@@ -98,10 +98,3 @@ export const marketplaceIssuanceResultSelector = Selector('MarketplaceIssuanceRe
order: rawOrderSelector,
tx_hash: true,
})
export const marketplaceSupplierOrderActionResultSelector = Selector(
'MarketplaceSupplierOrderActionResult',
)({
order: rawOrderSelector,
tx_hash: true,
})