(id: string)
| 38 | }; |
| 39 | |
| 40 | const reduceCardWidth = (id: string) => { |
| 41 | const card = getCardById("", id); |
| 42 | if (card && card.width > 1) card.width -= 1; |
| 43 | }; |
| 44 | |
| 45 | const editCardName = (id: string, newName: string) => { |
| 46 | const card = getCardById("", id); |
nothing calls this directly
no test coverage detected