export function useProjectBySlug(slug: string, options?: any) {
const queryOptions = trpc.projects.getBySlug.queryOptions({ slug }, options);
return useSuspenseQuery(queryOptions);
}export function useProjectBySlug(slug: string, options?: any) {
const queryOptions = trpc.projects.getBySlug.queryOptions({ slug }, options);
return useSuspenseQuery(queryOptions);
} queryOptionsqueryOptions all over the place. The problem is i want to pass the correct type for options, not any.Join the Discord to continue the conversation