diff --git a/src/App.php b/src/App.php index 7219f646db..17ca38a28c 100644 --- a/src/App.php +++ b/src/App.php @@ -135,7 +135,6 @@ class App /** @var array global sticky arguments */ protected array $stickyGetArguments = [ '__atk_json' => false, - '__atk_tab' => false, ]; /** @var class-string */ diff --git a/tests/DemosTest.php b/tests/DemosTest.php index 6f9369ec8e..6e62b71e55 100644 --- a/tests/DemosTest.php +++ b/tests/DemosTest.php @@ -153,7 +153,7 @@ protected function assertNoGlobalSticky(App $app): void { $appSticky = array_diff_assoc( \Closure::bind(static fn () => $app->stickyGetArguments, null, App::class)(), - ['__atk_json' => false, '__atk_tab' => false, 'APP_CALL_EXIT' => true, 'APP_CATCH_EXCEPTIONS' => true] + ['__atk_json' => false, 'APP_CALL_EXIT' => true, 'APP_CATCH_EXCEPTIONS' => true] ); if ($appSticky !== []) { throw (new Exception('Global GET sticky must never be set by any component'))