(fileId: string)
| 46 | } |
| 47 | |
| 48 | const handleFileIdUpdate = (fileId: string) => { |
| 49 | console.log("WelcomeForm: New file ID added:", fileId); |
| 50 | setFileIds(prevFileIds => [...prevFileIds, fileId]); |
| 51 | }; |
| 52 | |
| 53 | |
| 54 | const handleActiveFileIdsUpdate = (activeFileIds: string[]) => { |
nothing calls this directly
no outgoing calls
no test coverage detected