trpc-panel icon indicating copy to clipboard operation
trpc-panel copied to clipboard

Results 47 trpc-panel issues
Sort by recently updated
recently updated
newest added
trafficstars

Formerly #86 but moved to separate branch

Hi Currently, if I have a procedure that have an input as z.record(), the panel would render nothing for that field and clicking the execute button would also do nothing?...

I think there was a unnecessary character introduced in https://github.com/iway1/trpc-panel/commit/98fba514ebe908d8b70276bd7deee3bd7cf1864b#diff-3d1199da4832be7027ff79536aa455ffecec6b52ef98fda6da97676aa41884ffR59

I think it would be useful to more easily verify correctness of large output structures.

**Screenshot** ![image](https://github.com/iway1/trpc-panel/assets/2105157/3766541a-bb55-4e1a-8c75-d92df06d8d6d) **Source of Problem** https://github.com/iway1/trpc-panel/blame/f452cabbc60116475ca21439f9201cb90ab8581a/packages/trpc-panel/src/react-app/components/form/ProcedureForm/DescriptionSection.tsx#L59

As a person viewing the tRPC Panel, I would like to be able to have custom tRPC HTTP headers added automatically instead of manually adding them via the tRPC Panel's...

enhancement

In TypeScript project without skipLibCheck, it will throw error ``` Cannot find module '@src/parse/parseNodeTypes' or its corresponding type declarations.ts(2307) ``` Also, https://github.com/iway1/trpc-panel/pull/51 this is wrong. According to https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-7.html#packagejson-exports-imports-and-self-referencing, the only...

@iway1 Hello, I recently discovered that the trpc-panel was not correctly handling nested input, such as the  `createNestedPost` function which was added in this pull request.

### The problem When using the [base procedures](https://trpc.io/docs/server/procedures#reusable-base-procedures) pattern with merged input, trpc panel throws the following error: ``` trpc-panel: Failed to parse procedure , Couldn't parse node. ``` When...