Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify EditorChoice config retrieval
Updated the way the `EditorChoice` configuration value is retrieved. Instead of using `Configuration.GetSection("Post:Editor").Get<EditorChoice>()`, it now uses `Configuration.GetValue<EditorChoice>("Post:Editor")`. This change simplifies the retrieval process by directly getting the value of the specified type from the configuration.
- Loading branch information