aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/serviceLimit
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-12 09:19:10 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-12 09:19:10 +0200
commit828f4bce4ee1d7c53c132f0cce6032c121632015 (patch)
tree732d53bf1419dfd315f96bcb7cc4a43f34d31389 /src/features/serviceLimit
parentMerge branch 'private-notifications' (diff)
downloadferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.tar.gz
ferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.tar.zst
ferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.zip
Use ferdi namespace on debugger
Diffstat (limited to 'src/features/serviceLimit')
-rw-r--r--src/features/serviceLimit/index.js2
-rw-r--r--src/features/serviceLimit/store.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/features/serviceLimit/index.js b/src/features/serviceLimit/index.js
index 92ad8bb98..fa93bb615 100644
--- a/src/features/serviceLimit/index.js
+++ b/src/features/serviceLimit/index.js
@@ -1,7 +1,7 @@
1import { reaction } from 'mobx'; 1import { reaction } from 'mobx';
2import { ServiceLimitStore } from './store'; 2import { ServiceLimitStore } from './store';
3 3
4const debug = require('debug')('Franz:feature:serviceLimit'); 4const debug = require('debug')('Ferdi:feature:serviceLimit');
5 5
6export const DEFAULT_SERVICE_LIMIT = 3; 6export const DEFAULT_SERVICE_LIMIT = 3;
7 7
diff --git a/src/features/serviceLimit/store.js b/src/features/serviceLimit/store.js
index 9c4b5ef1a..6510e2872 100644
--- a/src/features/serviceLimit/store.js
+++ b/src/features/serviceLimit/store.js
@@ -2,7 +2,7 @@ import { computed, observable } from 'mobx';
2import { FeatureStore } from '../utils/FeatureStore'; 2import { FeatureStore } from '../utils/FeatureStore';
3import { DEFAULT_SERVICE_LIMIT } from '.'; 3import { DEFAULT_SERVICE_LIMIT } from '.';
4 4
5const debug = require('debug')('Franz:feature:serviceLimit:store'); 5const debug = require('debug')('Ferdi:feature:serviceLimit:store');
6 6
7export class ServiceLimitStore extends FeatureStore { 7export class ServiceLimitStore extends FeatureStore {
8 @observable isServiceLimitEnabled = false; 8 @observable isServiceLimitEnabled = false;