Fix TypeScript errors in EventAdmin component by splitting change handlers

This commit is contained in:
Your Name
2025-04-29 18:13:11 -04:00
parent 6a161be312
commit fb61fc3ffb
2 changed files with 22 additions and 13 deletions

View File

@@ -10,8 +10,8 @@ COPY frontend/package*.json ./frontend/
COPY backend/package*.json ./backend/
# Install dependencies
RUN cd backend && npm install && \
cd ../frontend && npm install
RUN npm install
RUN cd frontend && npm install --save-dev @types/react @types/react-dom @types/react-router-dom @types/axios
# Copy source files
COPY . .