supress type errors for now

This commit is contained in:
Björn Dalfors
2024-03-10 12:57:00 +01:00
parent b51b3065b0
commit 3b8418ccfd
2 changed files with 2 additions and 0 deletions

View File

@@ -30,4 +30,5 @@ const Panel = (props: {
) )
} }
// @ts-ignore
export default withStyles(styles)(Panel) export default withStyles(styles)(Panel)

View File

@@ -128,4 +128,5 @@ const styles = (theme: Theme) => ({
}, },
}) })
// @ts-ignore
export default connect(mapStateToProps, mapDispatchToProps)(withStyles(styles)(ValuePanel)) export default connect(mapStateToProps, mapDispatchToProps)(withStyles(styles)(ValuePanel))