From 8380b354ccc5db6ff6a03fef6b670c031d44bbd2 Mon Sep 17 00:00:00 2001 From: chamikaJ Date: Fri, 25 Jul 2025 15:23:02 +0530 Subject: [PATCH] refactor(template-drawer): remove unused parameters from TemplateDrawer component - Eliminated unused parameters in the TemplateDrawer component to clean up the code and improve readability. --- .../src/components/common/template-drawer/template-drawer.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/worklenz-frontend/src/components/common/template-drawer/template-drawer.tsx b/worklenz-frontend/src/components/common/template-drawer/template-drawer.tsx index 4b62a4a6..9f2e6031 100644 --- a/worklenz-frontend/src/components/common/template-drawer/template-drawer.tsx +++ b/worklenz-frontend/src/components/common/template-drawer/template-drawer.tsx @@ -38,10 +38,8 @@ const TemplateDrawer: React.FC = ({ showBothTabs = false, templateSelected = (templateId: string) => { if (!templateId) return; - templateId; }, selectedTemplateType = (type: 'worklenz' | 'custom') => { - type; }, }) => { const themeMode = useSelector((state: RootState) => state.themeReducer.mode);