Skip to content

Commit 2640b93

Browse files
committed
Fix: Update PayAnalytics component to use projectClientId instead of clientId for better clarity in prop usage
1 parent 196cb54 commit 2640b93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dashboard/src/components/pay/PayAnalytics/PayAnalytics.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export async function PayAnalytics(props: {
6060
const hasVolume = volumeData.some((d) => d.amountUsdCents > 0);
6161
const hasWallet = walletData.some((d) => d.count > 0);
6262
if (!hasVolume && !hasWallet) {
63-
return <PayEmbedFTUX clientId={props.clientId} />;
63+
return <PayEmbedFTUX clientId={props.projectClientId} />;
6464
}
6565

6666
return (

0 commit comments

Comments
 (0)