From 0af2ee63a60dd60aaa764d318cd8547c4f61ec47 Mon Sep 17 00:00:00 2001 From: voynow Date: Sun, 27 Oct 2024 12:11:09 -0400 Subject: [PATCH] pull to refresh on mobile dashboard --- mobile/mobile/DashboardView.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mobile/mobile/DashboardView.swift b/mobile/mobile/DashboardView.swift index f719916..d360bf6 100644 --- a/mobile/mobile/DashboardView.swift +++ b/mobile/mobile/DashboardView.swift @@ -32,6 +32,9 @@ struct DashboardView: View { } } } + .refreshable { + fetchData() + } } .background(ColorTheme.black.edgesIgnoringSafeArea(.all)) .navigationBarHidden(true)