Fix Job
All checks were successful
Push image to registry / build-image (push) Successful in 4m41s

This commit is contained in:
2025-02-18 18:48:48 +01:00
parent 313c0a6a9a
commit 61e55f960e
2 changed files with 8 additions and 2 deletions

View File

@ -37,7 +37,11 @@ class MainNav extends BaseComponent
}
public function goToHome(Browser $browser) {
$browser->scrollIntoView('@logo');
$browser->click('@logo');
try {
$browser->scrollIntoView('@logo');
$browser->click('@logo');
} catch (\Exception $e) {
$browser->visit('https://hellcase.com/');
}
}
}