oops, moved the wrong thing

This commit is contained in:
krawieck 2020-08-31 20:10:05 +02:00
parent 8c7e7c283b
commit fdcb29fb1c
3 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'widgets/comment_tree.dart';
import 'widgets/markdown_text.dart';
import '../comment_tree.dart';
import 'markdown_text.dart';
class Comment extends StatelessWidget {
final int indent;

View File

@ -2,8 +2,8 @@ import 'package:flutter/material.dart';
import 'package:flutter_hooks/flutter_hooks.dart';
import 'package:lemmy_api_client/lemmy_api_client.dart';
import '../comment.dart';
import 'comment_tree.dart';
import '../comment_tree.dart';
import 'comment.dart';
/// Manages comments section, sorts them
class Comments extends HookWidget {