Skip to content

Commit ea9ba7f

Browse files
author
Marcin Mazurek
committed
[DDW-809] Fix minor issues
1 parent 018c591 commit ea9ba7f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

source/renderer/app/stores/ProfileStore.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -444,10 +444,8 @@ export default class ProfileStore extends Store {
444444
}
445445
};
446446
_isOnAnalyticsPage = () =>
447-
// @ts-ignore ts-migrate(2339) FIXME: Property 'stores' does not exist on type 'ProfileS... Remove this comment to see the full error message
448447
this.stores.app.currentRoute === ROUTES.PROFILE.ANALYTICS;
449448
_isOnTermsOfUsePage = () =>
450-
// @ts-ignore ts-migrate(2339) FIXME: Property 'stores' does not exist on type 'ProfileS... Remove this comment to see the full error message
451449
this.stores.app.currentRoute === ROUTES.PROFILE.TERMS_OF_USE;
452450
_redirectToAnalyticsScreenIfNotConfirmed = () => {
453451
if (
@@ -456,7 +454,6 @@ export default class ProfileStore extends Store {
456454
this.areTermsOfUseAccepted &&
457455
!this.hasConfirmedAnalyticsAcceptanceStatus
458456
) {
459-
// @ts-ignore ts-migrate(2339) FIXME: Property 'actions' does not exist on type 'Profile... Remove this comment to see the full error message
460457
this.actions.router.goToRoute.trigger({
461458
route: ROUTES.PROFILE.ANALYTICS,
462459
});

0 commit comments

Comments
 (0)