(tech: string)
| 148 | }; |
| 149 | |
| 150 | const removeTech = (tech: string) => { |
| 151 | setFormData(prev => ({ |
| 152 | ...prev, |
| 153 | technologies: prev.technologies.filter(t => t !== tech) |
| 154 | })); |
| 155 | }; |
| 156 | |
| 157 | const toggleWorkspace = (wsId: string) => { |
| 158 | setFormData(prev => { |