remove logging

This commit is contained in:
SpikeHD
2022-05-12 21:21:36 -07:00
parent 2bcb68ba32
commit 1eb2ae02cc
3 changed files with 0 additions and 6 deletions

View File

@@ -39,8 +39,6 @@ export default class ServerLaunchSection extends React.Component<IProps, IState>
buttonLabel: await translate('main.launch_button'),
checkboxLabel: await translate('main.gc_enable')
})
console.log(this.state)
}
async toggleGrasscutter() {

View File

@@ -39,8 +39,6 @@ export default class DirInput extends React.Component<IProps, IState> {
value: path
})
console.log(this.state)
if (this.props.onChange) this.props.onChange(path)
}

View File

@@ -63,8 +63,6 @@ export default class Tr extends React.Component<IProps, IState> {
export async function translate(text: string) {
const language = await getConfigOption('language') || 'en'
const translation_json = JSON.parse(await invoke('get_lang', { lang: language }) || '{}')
console.log(translation_json)
// Traversal
if (text.includes('.')) {