From 0ecf364c5b2d8dc3b3cb8474b2124e50955bc602 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Fri, 7 Oct 2016 02:11:03 -0700 Subject: Prevent back/login buttons from appearing on the terms of service. --- ui/app/app.js | 1 + 1 file changed, 1 insertion(+) (limited to 'ui/app') diff --git a/ui/app/app.js b/ui/app/app.js index def683bba..71e0637d0 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -330,6 +330,7 @@ App.prototype.renderBackButton = function (style, justArrow = false) { App.prototype.renderBackToInitButton = function () { var props = this.props var button = null + if (!props.isConfirmed) return button if (!props.isUnlocked) { if (props.currentView.name === 'InitMenu') { button = props.forgottenPassword ? h('.flex-row', { -- cgit