(value: string | number)
| 162 | }; |
| 163 | |
| 164 | const handleActiveVariant = (value: string | number) => { |
| 165 | setActive((prev) => ({ |
| 166 | ...prev, |
| 167 | axes: toggleVariableAxis(prev.axes, value), |
| 168 | })); |
| 169 | }; |
| 170 | |
| 171 | const isItal = isActive.axes.ital; |
| 172 |
nothing calls this directly
no test coverage detected