fix(ux): Make 'New' page title consistent (#6040)

Fixes a couple items missed from #5938
This commit is contained in:
Jamil
2024-07-25 08:03:03 -07:00
committed by GitHub
parent 82b8de4c9c
commit 4839d8821c
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ defmodule Web.Settings.ApiClients.New do
socket =
assign(socket,
form: to_form(changeset),
page_title: "Add an API Client"
page_title: "New API Client"
)
{:ok, socket, temporary_assigns: [form: %Phoenix.HTML.Form{}]}

View File

@@ -16,7 +16,7 @@ defmodule Web.Settings.ApiClients.NewToken do
actor: actor,
encoded_token: nil,
form: to_form(changeset),
page_title: "Add an API Token"
page_title: "New API Token"
)
{:ok, socket, temporary_assigns: [form: %Phoenix.HTML.Form{}]}