From b3f5e29478e72b2af436e5bcdca9ab85ce4bcf9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Eduardo=20Jer=C3=A9z=20Gir=C3=B3n?= Date: Wed, 24 Jul 2024 12:49:50 -0600 Subject: [PATCH] chore: Update destination page title to "S3 Destinations" --- internal/view/web/dashboard/destinations/index.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/view/web/dashboard/destinations/index.go b/internal/view/web/dashboard/destinations/index.go index a895ad7..b494fc1 100644 --- a/internal/view/web/dashboard/destinations/index.go +++ b/internal/view/web/dashboard/destinations/index.go @@ -20,7 +20,7 @@ func indexPage() gomponents.Node { content := []gomponents.Node{ html.Div( html.Class("flex justify-between items-start"), - component.H1Text("Destinations"), + component.H1Text("S3 Destinations"), createDestinationButton(), ), component.CardBox(component.CardBoxParams{ @@ -59,7 +59,7 @@ func indexPage() gomponents.Node { } return layout.Dashboard(layout.DashboardParams{ - Title: "Destinations", + Title: "S3 Destinations", Body: content, }) }