chore: make autoIGC true for new accounts (#4105)
This commit is contained in:
parent
4efe9106a4
commit
d88d1303c6
1 changed files with 4 additions and 4 deletions
|
|
@ -1,11 +1,11 @@
|
|||
import 'package:matrix/matrix.dart';
|
||||
|
||||
import 'package:fluffychat/pangea/common/constants/model_keys.dart';
|
||||
import 'package:fluffychat/pangea/common/controllers/pangea_controller.dart';
|
||||
import 'package:fluffychat/pangea/instructions/instruction_settings.dart';
|
||||
import 'package:fluffychat/pangea/learning_settings/enums/language_level_type_enum.dart';
|
||||
import 'package:fluffychat/pangea/spaces/models/space_model.dart';
|
||||
import 'package:fluffychat/widgets/matrix.dart';
|
||||
import 'package:matrix/matrix.dart';
|
||||
|
||||
import '../../learning_settings/models/language_model.dart';
|
||||
|
||||
/// The user's settings learning settings.
|
||||
|
|
@ -157,7 +157,7 @@ class UserToolSettings {
|
|||
this.interactiveGrammar = true,
|
||||
this.immersionMode = false,
|
||||
this.definitions = true,
|
||||
this.autoIGC = false,
|
||||
this.autoIGC = true,
|
||||
this.enableTTS = true,
|
||||
this.enableAutocorrect = false,
|
||||
});
|
||||
|
|
@ -170,7 +170,7 @@ class UserToolSettings {
|
|||
json[ToolSetting.interactiveGrammar.toString()] ?? true,
|
||||
immersionMode: false,
|
||||
definitions: json[ToolSetting.definitions.toString()] ?? true,
|
||||
autoIGC: json[ModelKey.autoIGC] ?? false,
|
||||
autoIGC: json[ModelKey.autoIGC] ?? true,
|
||||
enableTTS: json[ToolSetting.enableTTS.toString()] ?? true,
|
||||
enableAutocorrect: json["enableAutocorrect"] ?? false,
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue