MCPcopy Create free account
hub / github.com/TinyActive/fluxion / addTech

Function addTech

src/components/workspaces/ProjectDialog.tsx:139–148  ·  view source on GitHub ↗
(tech: string)

Source from the content-addressed store, hash-verified

137 };
138
139 const addTech = (tech: string) => {
140 const trimmed = tech.trim();
141 if (trimmed && !formData.technologies.includes(trimmed)) {
142 setFormData(prev => ({
143 ...prev,
144 technologies: [...prev.technologies, trimmed]
145 }));
146 }
147 setNewTech('');
148 };
149
150 const removeTech = (tech: string) => {
151 setFormData(prev => ({

Callers 1

ProjectDialogFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected