(id: string)
| 33 | }; |
| 34 | |
| 35 | const addCardWidth = (id: string) => { |
| 36 | const card = getCardById("", id); |
| 37 | if (card && card.width < 12) card.width += 1; |
| 38 | }; |
| 39 | |
| 40 | const reduceCardWidth = (id: string) => { |
| 41 | const card = getCardById("", id); |
nothing calls this directly
no test coverage detected