Revert "fix: suppress referral scores warning in production"

This reverts commit cd83e0fc4f.
This commit is contained in:
2025-11-20 19:09:27 +03:00
parent c087d37801
commit 6dc8ac0183
+1 -1
View File
@@ -133,7 +133,7 @@ export async function getReferralScore(
): Promise<number> {
try {
if (!api?.query?.trust?.referralScores) {
if (import.meta.env.DEV) console.warn('Referral scores not available in trust pallet');
console.warn('Referral scores not available in trust pallet');
return 0;
}