summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander NeonXP Kiryukhin <a.kiryukhin@mail.ru>2019-05-15 03:34:36 +0300
committerAlexander NeonXP Kiryukhin <a.kiryukhin@mail.ru>2019-05-15 03:34:36 +0300
commit51d12073b36cf858e3edd1c906f1815f63b6ab47 (patch)
tree0851f810dcb6e9f89fc022f918a1939ce9f9092f /src
parent491a92f71cf13bc8ef84db3b7fb24361013afb8e (diff)
Remove logs
Diffstat (limited to 'src')
-rw-r--r--src/Actions/entity.ts2
-rw-r--r--src/Components/Login.tsx1
2 files changed, 0 insertions, 3 deletions
diff --git a/src/Actions/entity.ts b/src/Actions/entity.ts
index f2161fc..d373d9d 100644
--- a/src/Actions/entity.ts
+++ b/src/Actions/entity.ts
@@ -22,9 +22,7 @@ const entity = {
'loadRutine': () => async (dispatch, getStore) => {
const store = getStore()
const queue = store.entities.loadQueue
- console.log('1', queue.length)
const chunk = queue.splice(0, 25)
- console.log('2', chunk.length, queue.length)
const { v, csrf } = store.auth
const params = { v, csrf }
loadTiles(chunk, params)
diff --git a/src/Components/Login.tsx b/src/Components/Login.tsx
index fe20e09..afdd18f 100644
--- a/src/Components/Login.tsx
+++ b/src/Components/Login.tsx
@@ -54,7 +54,6 @@ class Login extends Component<Props, State> {
}
render() {
- console.log(this.props)
return (<View style={{ flexGrow: 1, paddingTop: getStatusBarHeight(true), paddingBottom: getBottomSpace() }}>
{this.renderLogin()}
</View>);