File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
frontend/appflowy_flutter/lib/workspace/presentation/settings/pages Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,12 @@ class SettingsAIView extends StatelessWidget {
52
52
];
53
53
54
54
children.add (const _AISearchToggle (value: false ));
55
- children.add (
56
- _LocalAIOnBoarding (
57
- workspaceId: userProfile.workspaceId,
58
- ),
59
- );
55
+ // TODO(nathan): enable local ai
56
+ // children.add(
57
+ // _LocalAIOnBoarding(
58
+ // workspaceId: userProfile.workspaceId,
59
+ // ),
60
+ // );
60
61
61
62
return SettingsBody (
62
63
title: LocaleKeys .settings_aiPage_title.tr (),
@@ -113,6 +114,7 @@ class _AISearchToggle extends StatelessWidget {
113
114
}
114
115
}
115
116
117
+ // ignore: unused_element
116
118
class _LocalAIOnBoarding extends StatelessWidget {
117
119
const _LocalAIOnBoarding ({required this .workspaceId});
118
120
final String workspaceId;
Original file line number Diff line number Diff line change @@ -212,6 +212,7 @@ class _SettingsBillingViewState extends State<SettingsBillingView> {
212
212
213
213
// Currently, the AI Local tile is only available on macOS
214
214
// TODO(nathan): enable windows and linux
215
+ // TODO(nathan): enable local ai
215
216
// if (Platform.isMacOS)
216
217
// _AITile(
217
218
// plan: SubscriptionPlanPB.AiLocal,
Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ class _SettingsPlanViewState extends State<SettingsPlanView> {
139
139
140
140
// Currently, the AI Local tile is only available on macOS
141
141
// TODO(nathan): enable windows and linux
142
+ // TODO(nathan): enable local ai
142
143
// if (Platform.isMacOS)
143
144
// Flexible(
144
145
// child: _AddOnBox(
You can’t perform that action at this time.
0 commit comments