From 8fec8cb84104a3294fedaea0df1a17558fd96a6f Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Wed, 25 Mar 2026 22:19:15 -0600 Subject: [PATCH] background the first AmCountryList load to keep from holding up the Profile dialog --- ui/templates.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/templates.go b/ui/templates.go index ca75c26..4111f1f 100644 --- a/ui/templates.go +++ b/ui/templates.go @@ -346,6 +346,9 @@ func setupTemplates() { s := a.Get(0).Convert(reflect.TypeFor[string]()).String() return reflect.ValueOf(util.CapitalizeString(s)) }) + + // Start the country list initializing in the background. + go util.AmCountryList(config.GlobalConfig.Rendering.CountryList.Prioritize) } // TemplateRenderer is the Renderer instance set into the Echo context at creation time, to render Jet templates.