Closed warpdesign closed 6 months ago
Some error occur on certain version of node/swc because some class fields of SettingsState are not initialised.
SettingsState
This prevents react-explorer from building in search configurations.
Before:
class SettingsState { isDarkModeActive: boolean }
After:
class SettingsState { isDarkModeActive: boolean = '' }
Some error occur on certain version of node/swc because some class fields of
SettingsState
are not initialised.This prevents react-explorer from building in search configurations.
Before:
After: