From 9546d6e4b8b27240ae0f6cc90c81519ccaf0e12f Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Thu, 3 Jul 2025 22:11:12 +0800 Subject: [PATCH] :wastebasket: Disable the technical review tour --- lib/services/tour.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/services/tour.dart b/lib/services/tour.dart index 4d27449..b36d64a 100644 --- a/lib/services/tour.dart +++ b/lib/services/tour.dart @@ -3,7 +3,6 @@ import 'dart:convert'; import 'package:flutter/widgets.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:island/pods/config.dart'; -import 'package:island/widgets/tour/techincal_review_intro.dart'; import 'package:riverpod_annotation/riverpod_annotation.dart'; part 'tour.g.dart'; @@ -12,7 +11,7 @@ part 'tour.freezed.dart'; const kAppTourStatusKey = "app_tour_statuses"; const List kAllTours = [ - Tour(id: 'technical_review_intro', isStartup: true), + // Tour(id: 'technical_review_intro', isStartup: true), ]; @freezed @@ -22,7 +21,7 @@ sealed class Tour with _$Tour { const factory Tour({required String id, required bool isStartup}) = _Tour; Widget get widget => switch (id) { - 'technical_review_intro' => const TechicalReviewIntroWidget(), + // 'technical_review_intro' => const TechicalReviewIntroWidget(), _ => throw UnimplementedError(), }; }