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 8
8
UserPlusIcon ,
9
9
VideoCameraIcon ,
10
10
} from "@heroicons/react/20/solid" ;
11
- import { json } from "@remix-run/node" ;
11
+ import { json , type MetaFunction } from "@remix-run/node" ;
12
12
import { Link , useRevalidator , useSubmit } from "@remix-run/react" ;
13
13
import { ActionFunctionArgs , LoaderFunctionArgs } from "@remix-run/server-runtime" ;
14
14
import { DiscordIcon } from "@trigger.dev/companyicons" ;
@@ -89,6 +89,14 @@ import {
89
89
v3TestTaskPath ,
90
90
} from "~/utils/pathBuilder" ;
91
91
92
+ export const meta : MetaFunction = ( ) => {
93
+ return [
94
+ {
95
+ title : `Tasks | Trigger.dev` ,
96
+ } ,
97
+ ] ;
98
+ } ;
99
+
92
100
export const loader = async ( { request, params } : LoaderFunctionArgs ) => {
93
101
const userId = await requireUserId ( request ) ;
94
102
const { organizationSlug, projectParam } = ProjectParamSchema . parse ( params ) ;
You can’t perform that action at this time.
0 commit comments