We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec68991 commit c921cb8Copy full SHA for c921cb8
src/components/incentives/MeritIncentivesTooltipContent.tsx
@@ -23,6 +23,8 @@ interface CampaignConfig {
23
hasSpecialContent: boolean;
24
}
25
26
+const ENABLE_SAFE_CAMPAIGN = false;
27
+
28
const isCeloAction = (action: MeritAction): boolean => {
29
return [
30
MeritAction.CELO_SUPPLY_CELO,
@@ -37,7 +39,7 @@ const isCeloAction = (action: MeritAction): boolean => {
37
39
].includes(action);
38
40
};
41
const isSelfVerificationCampaign = (action: MeritAction): boolean =>
- action === MeritAction.CELO_SUPPLY_USDT;
42
+ ENABLE_SAFE_CAMPAIGN && action === MeritAction.CELO_SUPPLY_USDT;
43
44
const getCampaignConfig = (action: MeritAction): CampaignConfig => {
45
if (isSelfVerificationCampaign(action)) {
0 commit comments