From dbf6716b9bbae7cd4aba7484bf99ffaaff6000bb Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Sat, 13 Jul 2024 18:20:19 +0200 Subject: [PATCH] Cleanup: remove unused field IsNewRepo --- pkg/config/app_config.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/config/app_config.go b/pkg/config/app_config.go index fcdabb269..3364ba554 100644 --- a/pkg/config/app_config.go +++ b/pkg/config/app_config.go @@ -23,7 +23,6 @@ type AppConfig struct { UserConfigDir string TempDir string AppState *AppState - IsNewRepo bool } type AppConfigurer interface { @@ -101,7 +100,6 @@ func NewAppConfig( UserConfigDir: configDir, TempDir: tempDir, AppState: appState, - IsNewRepo: false, } return appConfig, nil