File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam._index Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 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" ;
1212import { Link , useRevalidator , useSubmit } from "@remix-run/react" ;
1313import { ActionFunctionArgs , LoaderFunctionArgs } from "@remix-run/server-runtime" ;
1414import { 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+
92100export const loader = async ( { request, params } : LoaderFunctionArgs ) => {
93101 const userId = await requireUserId ( request ) ;
94102 const { organizationSlug, projectParam } = ProjectParamSchema . parse ( params ) ;
You can’t perform that action at this time.
0 commit comments