refactor: use UserAgentClient for OSM API fetch, remove redundant comments

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
flockhopperdev
2026-06-01 17:17:08 -06:00
committed by Claude Code
parent 480f99b360
commit 191b5ccae0
2 changed files with 3 additions and 4 deletions
-2
View File
@@ -290,7 +290,6 @@ class _HomeScreenState extends State<HomeScreen> with TickerProviderStateMixin {
}
void _handleNodeDeepLink(OsmNode node) {
// Fly to node at zoom 16
try {
_mapController.animateTo(
dest: node.coord,
@@ -302,7 +301,6 @@ class _HomeScreenState extends State<HomeScreen> with TickerProviderStateMixin {
debugPrint('[HomeScreen] Could not animate to deep link node: $e');
}
// Open the node details sheet after map animation settles
Future.delayed(const Duration(milliseconds: 700), () {
if (mounted) {
openNodeTagSheet(node);