diff --git a/filcnaplo/ios/Flutter/Generated 3.xcconfig b/filcnaplo/ios/Flutter/Generated 3.xcconfig
new file mode 100644
index 0000000..194436b
--- /dev/null
+++ b/filcnaplo/ios/Flutter/Generated 3.xcconfig	
@@ -0,0 +1,14 @@
+// This is a generated file; do not edit or check into version control.
+FLUTTER_ROOT=/Users/kima/src/flutter
+FLUTTER_APPLICATION_PATH=/Users/kima/Documents/refilc/app/naplo/filcnaplo
+COCOAPODS_PARALLEL_CODE_SIGN=true
+FLUTTER_TARGET=lib/main.dart
+FLUTTER_BUILD_DIR=build
+FLUTTER_BUILD_NAME=4.2.0
+FLUTTER_BUILD_NUMBER=220
+EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386
+EXCLUDED_ARCHS[sdk=iphoneos*]=armv7
+DART_OBFUSCATION=false
+TRACK_WIDGET_CREATION=true
+TREE_SHAKE_ICONS=false
+PACKAGE_CONFIG=.dart_tool/package_config.json
diff --git a/filcnaplo/lib/models/ad.dart b/filcnaplo/lib/models/ad.dart
index 8279214..ebb73b5 100644
--- a/filcnaplo/lib/models/ad.dart
+++ b/filcnaplo/lib/models/ad.dart
@@ -18,6 +18,7 @@ class Ad {
   });
 
   factory Ad.fromJson(Map json) {
+    print(json);
     return Ad(
       title: json['title'] ?? 'Ad',
       description: json['description'] ?? '',
diff --git a/filcnaplo/lib/ui/filter/widgets/ads.dart b/filcnaplo/lib/ui/filter/widgets/ads.dart
index 2cd2c7a..2632be3 100644
--- a/filcnaplo/lib/ui/filter/widgets/ads.dart
+++ b/filcnaplo/lib/ui/filter/widgets/ads.dart
@@ -8,7 +8,7 @@ List<DateWidget> getWidgets(List<Ad> providerAds) {
 
   if (providerAds.isNotEmpty) {
     for (var ad in providerAds) {
-      if (ad.date.isAfter(DateTime.now())) {
+      if (ad.date.isBefore(DateTime.now())) {
         providerAds.sort((a, b) => -a.date.compareTo(b.date));
 
         items.add(DateWidget(
diff --git a/filcnaplo_mobile_ui/lib/common/widgets/ad/ad_tile.dart b/filcnaplo_mobile_ui/lib/common/widgets/ad/ad_tile.dart
index e9c0fde..12add1b 100644
--- a/filcnaplo_mobile_ui/lib/common/widgets/ad/ad_tile.dart
+++ b/filcnaplo_mobile_ui/lib/common/widgets/ad/ad_tile.dart
@@ -13,6 +13,9 @@ class AdTile extends StatelessWidget {
 
   @override
   Widget build(BuildContext context) {
+    print('geic');
+    print(ad);
+
     return Padding(
       padding: padding ?? const EdgeInsets.symmetric(horizontal: 8.0),
       child: PanelButton(