Fix logged-out redirect bouncing to invoice marketing page.
Deploy Ladill Woo Manager / deploy (push) Successful in 43s

The SSO login_required fallback used the invoice app's default marketing URL
(leftover from the fork), sending logged-out Woo users to /products/invoice.
Point it at /products/woo instead.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-07 18:15:38 +00:00
co-authored by Cursor
parent 8b32cdc9c3
commit 4743efa3d7
+1 -1
View File
@@ -2,5 +2,5 @@
return [ return [
'product_slug' => 'woo-manager', 'product_slug' => 'woo-manager',
'marketing_url' => env('LADILL_MARKETING_URL', 'https://ladill.com/products/invoice'), 'marketing_url' => env('LADILL_MARKETING_URL', 'https://ladill.com/products/woo'),
]; ];