Skip to content

Commit a58bd48

Browse files
committed
fix: Fix import bug
1 parent 650c0ce commit a58bd48

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/src/_generator_converger.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import 'package:df_string/df_string.dart';
1414

1515
import 'package:path/path.dart' as p;
1616

17-
import '_insight.dart';
17+
import 'generate_screen/_insight.dart';
1818

1919
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
2020

@@ -46,8 +46,7 @@ final generatorConverger = _GeneratorConverger(
4646

4747
// Determine the output file path.
4848
final folderName = replacement.insight.screenClassName.toSnakeCase();
49-
final outputFilePath =
50-
p.join(replacement.insight.path, folderName, fileName);
49+
final outputFilePath = p.join(replacement.insight.path, folderName, fileName);
5150

5251
// Write the generated Dart file.
5352
await writeFile(outputFilePath, output);

0 commit comments

Comments
 (0)