Skip to content

Commit b7c6baf

Browse files
chore: remove useless code
1 parent aa1b3de commit b7c6baf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/javascript/firebase/subscription.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function loadSubscriptionToApp(app) {
3232
);
3333
})
3434
.then((subscription) => {
35-
console.debug('Feng loadSubscriptionToApp', subscription);
35+
//console.debug('loadSubscriptionToApp', subscription);
3636
app.setState((state) => {
3737
const newUser = state.user;
3838
newUser.subscription = subscription;

src/services/planService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import config from './configuration';
22

3-
//TODO: refactor: It is necessary to integrate more plan-related logic into this module.
3+
//TODO(refactor): It is necessary to integrate more plan-related logic into this module.
44

55
const getProductByPlanType = (planType) => {
66
const productMap = {

src/services/user_service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
user: user,
66
subscription: subscription,
77
isSubscribed: function () {
8-
console.debug('Feng subscription', subscription());
8+
//console.debug('subscription', subscription());
99
return (
1010
subscription() &&
1111
(subscription().status === 'active' ||

0 commit comments

Comments
 (0)