Remove duplicate serverUrl getter and fix gitignore

- Removed duplicate serverUrl getter at line 310
- Fixed .gitignore to only ignore Python lib/ not Flutter lib/
- Build should now work
This commit is contained in:
2025-11-07 18:29:18 +00:00
parent 3ba50748c5
commit a82b98870d
2 changed files with 7 additions and 6 deletions

10
.gitignore vendored
View File

@@ -18,14 +18,16 @@ __pycache__/
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
# Ignore Python lib directories but not Flutter's lib/
/lib/
/lib64/
backend/lib/
backend/lib64/
parts/
sdist/
var/
@@ -34,6 +36,8 @@ wheels/
.installed.cfg
*.egg
MANIFEST
# Python build/ but keep Flutter build/ unignored separately below
/build/
# Virtual environments
venv/

View File

@@ -305,7 +305,4 @@ class ApiClient {
/// Check if authenticated
bool get isAuthenticated => _token != null;
/// Get current server URL
String get serverUrl => _serverUrl ?? baseUrl;
}