Skip to content

Commit

Permalink
Merge branch 'main' into jlk/fix-thirdPartyJSTracking
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakeii authored Feb 27, 2024
2 parents d9ba6f2 + c48e62c commit 00dc863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/capiMultiple.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function addCapiHostedCardOverrides(
overrideCards: CapiCardOverride[],
overrideLogo?: string,
): { logo: string | null; cards: CapiHostedCard[] } {
const logo = overrideLogo ?? cardData[0]?.branding.logo.src;
const logo = overrideLogo ? overrideLogo : cardData[0]?.branding.logo.src;
return {
logo: logo ?? null,
cards: cardData
Expand Down

0 comments on commit 00dc863

Please sign in to comment.