# astrimid - I wonder why mosfet doesn't have con... Channel: #support Source: https://discord.com/channels/1233487248129921135/1525519646160195715 Started: 2026-07-11T15:10:27.266000+00:00 Last activity: 2026-07-12T05:20:49.068000+00:00 ## astrimid — 2026-07-11T15:10:26.429000+00:00 I wonder why doesn't have connections while does? ## astrimid — 2026-07-11T15:12:43.445000+00:00 And what's the conceptual difference between connections property and ? ## Abse — 2026-07-11T15:36:03.256000+00:00 connections and `` are almost the same , trace has some props like `name` that connections don't offer tho, and for the `` it should have them if not that is a bug, I will check the issue thanks for the report ## astrimid — 2026-07-11T15:51:57.616000+00:00 Don't see connections anywhere in common props nor in mosfet props: https://github.com/tscircuit/props/blob/a151076e871b7dc5dc2795a181c941a32f7dad35/lib/components/mosfet.ts#L8-L12 export interface MosfetProps extends CommonComponentProps { channelType: "n" | "p" mosfetMode: "enhancement" | "depletion" } CommonComponentProps export interface CommonComponentProps extends CommonLayoutProps { key?: any; name: string; pinAttributes?: Record; supplierPartNumbers?: SupplierPartNumbers; cadModel?: CadModelProp; children?: any; symbolName?: string; doNotPlace?: boolean; /** * This component will be drawn as part of this section e.g. "Power" */ schSectionName?: string; /** * This component will be drawn as part of this sheet e.g. "Main" */ schSheetName?: string; } ## astrimid — 2026-07-11T15:52:35.169000+00:00 is `pinAttributes` the property I need? ## astrimid — 2026-07-11T15:53:04.660000+00:00 So I should just use ? ## Seve — 2026-07-11T16:39:52.999000+00:00 Just use trace for now, but will definitely introduce connections to mosfet! Fwiw trace is usually better because of the ability to name the net or sometimes specify a custom width ## Seve — 2026-07-12T05:20:49.068000+00:00 fwiw i THINK mosfet got connections today