Skip to content

Commit b552267

Browse files
committed
chore: lint
1 parent 1e6899f commit b552267

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1310,7 +1310,7 @@ func templateHelpers(options *coderd.Options) map[string]any {
13101310
"base_url": func() string { return options.AccessURL.String() },
13111311
"current_year": func() string { return strconv.Itoa(time.Now().Year()) },
13121312
"logo_url": func() string {
1313-
ctx, cancel := context.WithTimeout(context.Background(), 1 * time.Second)
1313+
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
13141314
defer cancel()
13151315

13161316
logoURL, err := options.Database.GetLogoURL(ctx)
@@ -1325,7 +1325,7 @@ func templateHelpers(options *coderd.Options) map[string]any {
13251325
return logoURL
13261326
},
13271327
"app_name": func() string {
1328-
ctx, cancel := context.WithTimeout(context.Background(), 1 * time.Second)
1328+
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
13291329
defer cancel()
13301330

13311331
appName, err := options.Database.GetApplicationName(ctx)

0 commit comments

Comments
 (0)