fix(01): resolve circular dependency issues

- Remove dependency on Plan 11 from Plan 05 (password reset UI)
- Remove dependency on Plan 11 from Plan 08
- Both plans now only depend on Plan 03 (auth UI components)
- Fixes wave ordering violation where later wave depended on earlier wave
This commit is contained in:
Dani B
2026-01-28 01:00:43 -05:00
parent ff56c75da0
commit f403163331
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ phase: 01-authentication
plan: 05
type: execute
wave: 3
depends_on: ["01-03", "01-11"]
depends_on: ["01-03"]
files_modified: ["lib/features/authentication/presentation/pages/reset_password_page.dart", "lib/features/authentication/presentation/widgets/password_reset_form.dart"]
autonomous: true
user_setup:

View File

@@ -3,7 +3,7 @@ phase: 01-authentication
plan: 08
type: execute
wave: 3
depends_on: ["01-03", "01-11"]
depends_on: ["01-03"]
files_modified: ["lib/features/authentication/presentation/pages/login_page.dart", "lib/features/authentication/presentation/pages/signup_page.dart", "lib/features/authentication/presentation/pages/reset_password_page.dart"]
autonomous: true
user_setup: []