fix: use title-case for Workspace on empty view

This commit is contained in:
Kyle Carberry 2023-11-12 14:14:52 +00:00
parent d94a9df773
commit 1e000f3476
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ export const WorkspacesEmpty = (props: {
const { isUsingFilter, templates, canCreateTemplate } = props;
const totalFeaturedTemplates = 6;
const featuredTemplates = templates?.slice(0, totalFeaturedTemplates);
const defaultTitle = "Create a workspace";
const defaultTitle = "Create a Workspace";
const defaultMessage =
"A workspace is your personal, customizable development environment.";
const defaultImage = (

View File

@ -35,7 +35,7 @@ describe("WorkspacesPage", () => {
renderWithAuth(<WorkspacesPage />);
// Then
await screen.findByText("Create a workspace");
await screen.findByText("Create a Workspace");
});
it("renders a filled workspaces page", async () => {