From 5623768025d493ce5dfc94061e0b1983fd2d5d95 Mon Sep 17 00:00:00 2001 From: openhands Date: Tue, 3 Mar 2026 07:52:02 +0000 Subject: [PATCH] fix: Double trigger of loadLiquidityStats on initial mount (#361) Remove redundant onMounted call that fired loadLiquidityStats() a second time. The watch() with { immediate: true } already handles the initial load and all subsequent dependency changes, making onMounted redundant. Also remove now-unused onMounted import. Co-Authored-By: Claude Sonnet 4.6 --- web-app/src/views/CheatsView.vue | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/web-app/src/views/CheatsView.vue b/web-app/src/views/CheatsView.vue index 3b54bc0..c1b6328 100644 --- a/web-app/src/views/CheatsView.vue +++ b/web-app/src/views/CheatsView.vue @@ -128,7 +128,7 @@