Skip to content

Commit 5976cb5

Browse files
committed
Adds tasks page title
1 parent 668b34d commit 5976cb5

File tree

1 file changed

+9
-1
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam._index

1 file changed

+9
-1
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam._index/route.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
UserPlusIcon,
99
VideoCameraIcon,
1010
} from "@heroicons/react/20/solid";
11-
import { json } from "@remix-run/node";
11+
import { json, type MetaFunction } from "@remix-run/node";
1212
import { Link, useRevalidator, useSubmit } from "@remix-run/react";
1313
import { ActionFunctionArgs, LoaderFunctionArgs } from "@remix-run/server-runtime";
1414
import { DiscordIcon } from "@trigger.dev/companyicons";
@@ -89,6 +89,14 @@ import {
8989
v3TestTaskPath,
9090
} from "~/utils/pathBuilder";
9191

92+
export const meta: MetaFunction = () => {
93+
return [
94+
{
95+
title: `Tasks | Trigger.dev`,
96+
},
97+
];
98+
};
99+
92100
export const loader = async ({ request, params }: LoaderFunctionArgs) => {
93101
const userId = await requireUserId(request);
94102
const { organizationSlug, projectParam } = ProjectParamSchema.parse(params);

0 commit comments

Comments
 (0)