diff --git a/backend/grant/utils/enums.py b/backend/grant/utils/enums.py index 167beeeb..85a10c97 100644 --- a/backend/grant/utils/enums.py +++ b/backend/grant/utils/enums.py @@ -41,7 +41,6 @@ ProposalStage = ProposalStageEnum() class CategoryEnum(CustomEnum): - DAPP = 'DAPP' DEV_TOOL = 'DEV_TOOL' CORE_DEV = 'CORE_DEV' COMMUNITY = 'COMMUNITY' diff --git a/frontend/client/api/constants.ts b/frontend/client/api/constants.ts index 0ff5ff3d..249ac186 100644 --- a/frontend/client/api/constants.ts +++ b/frontend/client/api/constants.ts @@ -9,7 +9,6 @@ export const SORT_LABELS: { [key in PROPOSAL_SORT]: string } = { }; export enum PROPOSAL_CATEGORY { - DAPP = 'DAPP', DEV_TOOL = 'DEV_TOOL', CORE_DEV = 'CORE_DEV', COMMUNITY = 'COMMUNITY', @@ -24,11 +23,6 @@ interface CategoryUI { } export const CATEGORY_UI: { [key in PROPOSAL_CATEGORY]: CategoryUI } = { - DAPP: { - label: 'DApp', - color: '#8e44ad', - icon: 'appstore', - }, DEV_TOOL: { label: 'Developer tool', color: '#2c3e50', diff --git a/frontend/client/modules/create/utils.ts b/frontend/client/modules/create/utils.ts index b1ff6be3..3389d7b0 100644 --- a/frontend/client/modules/create/utils.ts +++ b/frontend/client/modules/create/utils.ts @@ -190,7 +190,7 @@ export function makeProposalPreviewFromDraft(draft: ProposalDraft): Proposal { contributionMatching: 0, percentFunded: 0, stage: 'preview', - category: draft.category || PROPOSAL_CATEGORY.DAPP, + category: draft.category || PROPOSAL_CATEGORY.CORE_DEV, isStaked: true, arbiter: { status: PROPOSAL_ARBITER_STATUS.ACCEPTED,