()
| 885 | } |
| 886 | |
| 887 | function saveConfig() { |
| 888 | Spicetify.LocalStorage.set("full-app-display-config", JSON.stringify(CONFIG)); |
| 889 | } |
| 890 | |
| 891 | const ConfigItem = ({ name, field, func, disabled = false }) => { |
| 892 | const [value, setValue] = useState(CONFIG[field]); |
no outgoing calls
no test coverage detected