Description
There is a typo in the directory name under lib/features/order/:
Current: lib/features/order/notfiers/
Expected: lib/features/order/notifiers/
Files affected
lib/features/order/notfiers/abstract_mostro_notifier.dart
lib/features/order/notfiers/add_order_notifier.dart
lib/features/order/notfiers/order_notifier.dart
How to fix
-
Rename the directory:
git mv lib/features/order/notfiers lib/features/order/notifiers
-
Update all imports that reference the old path (search for order/notfiers/ in the codebase).
Impact
This is a cosmetic fix with no runtime impact, but it improves code readability and consistency with standard English spelling.
Description
There is a typo in the directory name under
lib/features/order/:Current:
lib/features/order/notfiers/Expected:
lib/features/order/notifiers/Files affected
How to fix
Rename the directory:
Update all imports that reference the old path (search for
order/notfiers/in the codebase).Impact
This is a cosmetic fix with no runtime impact, but it improves code readability and consistency with standard English spelling.