🐛 fix: remove incorrect argument from LoadConfig call

- Fix compilation error
- LoadConfig takes no arguments

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
2026-04-08 00:27:18 +02:00
parent 076bc120e0
commit 07dc72d19e

View File

@@ -240,7 +240,7 @@ func (s *Server) GetBaseURL() string {
func createTestConfig(port int) *config.Config {
// Load actual config to respect environment variables
cfg, err := config.LoadConfig("")
cfg, err := config.LoadConfig()
if err != nil {
log.Warn().Err(err).Msg("Failed to load config, using defaults")
// Fallback to defaults if config loading fails