From 3796307f245b74596e37d7e73193f0dc89de92d6 Mon Sep 17 00:00:00 2001 From: Sam Chau Date: Sat, 11 Jan 2025 10:40:44 +1030 Subject: [PATCH] feat: add 'Remove' commit type for better categorization of component deletions --- frontend/src/constants/commits.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/constants/commits.js b/frontend/src/constants/commits.js index a049c93..bac72df 100644 --- a/frontend/src/constants/commits.js +++ b/frontend/src/constants/commits.js @@ -14,6 +14,11 @@ export const COMMIT_TYPES = [ label: 'Tweak', description: 'Fine-tuning and adjustments to existing components' }, + { + value: 'remove', + label: 'Remove', + description: 'Removing components or features from the system' + }, { value: 'fix', label: 'Fix',