diff --git a/database/migrations/2022_06_16_025156_add_react_switching_flag.php b/database/migrations/2022_06_16_025156_add_react_switching_flag.php index 3c807d7e417c..6db24aff8096 100644 --- a/database/migrations/2022_06_16_025156_add_react_switching_flag.php +++ b/database/migrations/2022_06_16_025156_add_react_switching_flag.php @@ -21,7 +21,7 @@ return new class extends Migration { public function up() { Schema::table('accounts', function (Blueprint $table) { - $table->boolean('set_react_as_default_ap')->default(0); + $table->boolean('set_react_as_default_ap')->default(1); }); } diff --git a/database/schema/mysql-schema.dump b/database/schema/mysql-schema.dump index 31efb3175efc..95262fb2134a 100644 --- a/database/schema/mysql-schema.dump +++ b/database/schema/mysql-schema.dump @@ -41,7 +41,7 @@ CREATE TABLE `accounts` ( `hosted_client_count` int(10) unsigned DEFAULT NULL, `hosted_company_count` int(10) unsigned DEFAULT NULL, `inapp_transaction_id` varchar(100) DEFAULT NULL, - `set_react_as_default_ap` tinyint(1) NOT NULL DEFAULT 0, + `set_react_as_default_ap` tinyint(1) NOT NULL DEFAULT 1, `is_flagged` tinyint(1) NOT NULL DEFAULT 0, `is_verified_account` tinyint(1) NOT NULL DEFAULT 0, `account_sms_verification_code` text DEFAULT NULL, diff --git a/resources/views/portal/ninja2020/layout/clean_setup.blade.php b/resources/views/portal/ninja2020/layout/clean_setup.blade.php index 8894872e218a..62d64724417a 100644 --- a/resources/views/portal/ninja2020/layout/clean_setup.blade.php +++ b/resources/views/portal/ninja2020/layout/clean_setup.blade.php @@ -96,9 +96,7 @@ @stack('head') @if(strpos(Request::url(),'setup')) - - @endif diff --git a/resources/views/setup/_application.blade.php b/resources/views/setup/_application.blade.php index de2d37c11282..568a081135bb 100644 --- a/resources/views/setup/_application.blade.php +++ b/resources/views/setup/_application.blade.php @@ -43,16 +43,6 @@ about how we use this. -
{{ ctrans('texts.setup_steps_notice') }}