Project management related changes
This commit is contained in:
10
scratch/patch_import.py
Normal file
10
scratch/patch_import.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import re
|
||||
|
||||
with open('kifi-app/lib/features/projects/presentation/widgets/add_project_sheet.dart', 'r') as f:
|
||||
content = f.read()
|
||||
|
||||
if "add_customer_sheet.dart" not in content:
|
||||
content = content.replace("import 'package:lucide_icons/lucide_icons.dart';", "import 'package:lucide_icons/lucide_icons.dart';\nimport '../../../sales/presentation/add_customer_sheet.dart';")
|
||||
|
||||
with open('kifi-app/lib/features/projects/presentation/widgets/add_project_sheet.dart', 'w') as f:
|
||||
f.write(content)
|
||||
Reference in New Issue
Block a user