We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2272b14 commit db25213Copy full SHA for db25213
packages/config/local/ode-store.ts
@@ -81,12 +81,7 @@ function normalizeConfig(config: OdeConfig): OdeConfig {
81
const statusMessageFormat = config.user.defaultStatusMessageFormat
82
?? config.user.defaultMessageFrequency
83
?? "medium";
84
- const normalizedFrequency =
85
- statusMessageFormat === "low"
86
- ? "minimum"
87
- : statusMessageFormat === "high"
88
- ? "aggressive"
89
- : statusMessageFormat;
+ const normalizedFrequency = statusMessageFormat;
90
const normalizedGitStrategy =
91
config.user.gitStrategy === "default" ? "default" : "worktree";
92
const messageUpdateIntervalCandidate =
0 commit comments