(updates: any)
| 60 | |
| 61 | // Update dashboard context when settings change |
| 62 | const updateSettings = (updates: any) => { |
| 63 | const newProps = { |
| 64 | ...props, |
| 65 | ...updates, |
| 66 | }; |
| 67 | updateWidgetProps(id, newProps); |
| 68 | return newProps; |
| 69 | }; |
| 70 | |
| 71 | const handleTitleChange = (newTitle: string) => { |
| 72 | setCurrentTitle(newTitle); |
no test coverage detected