From 99e0680171b77407ee15cd4eee6996588d7e0882 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 15 Mar 2025 16:58:28 -0700 Subject: feat: Development commit --- Sora/Views/Post/Grid/PostGridView.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Sora/Views/Post/Grid') diff --git a/Sora/Views/Post/Grid/PostGridView.swift b/Sora/Views/Post/Grid/PostGridView.swift index b359e07..7027f1a 100644 --- a/Sora/Views/Post/Grid/PostGridView.swift +++ b/Sora/Views/Post/Grid/PostGridView.swift @@ -72,16 +72,16 @@ struct PostGridView: View { } #else ToolbarItem(placement: .bottomBar) { - Button(action: { Task { manager.loadNextPage() } }) { - Label("Manually Load Next Page", systemImage: "arrow.triangle.2.circlepath") + Button(action: { Task { isSearchHistoryPresented.toggle() } }) { + Label("Search History", systemImage: "clock.arrow.circlepath") } - .disabled(manager.isLoading) } ToolbarItem(placement: .bottomBar) { - Button(action: { Task { isSearchHistoryPresented.toggle() } }) { - Label("Search History", systemImage: "clock.arrow.circlepath") + Button(action: { Task { manager.loadNextPage() } }) { + Label("Manually Load Next Page", systemImage: "arrow.triangle.2.circlepath") } + .disabled(manager.isLoading) } if manager.isLoading { -- cgit v1.2.3