Parcourir la source

fix: mobile lint issues

Fela Maslen il y a 4 ans
Parent
commit
5e8390b092
2 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 0
      gmus-mobile/Dockerfile
  2. 0 2
      gmus-mobile/lib/components/artists.dart

+ 1 - 0
gmus-mobile/Dockerfile

@@ -26,6 +26,7 @@ RUN mkdir app
 WORKDIR app
 
 COPY . .
+RUN touch .env
 USER root
 RUN chown -R developer:developer /home/developer/app
 USER developer

+ 0 - 2
gmus-mobile/lib/components/artists.dart

@@ -5,8 +5,6 @@ import 'package:http/http.dart' as http;
 
 import '../utils/url.dart';
 
-import './spinner.dart';
-
 Future<List<String>> fetchArtists(String apiUrl) async {
   final response = await http.get(formattedUrl(apiUrl, '/artists'));