Found while running the FeedItemType producer census for #5877. Observation only; not fixed there, and not in that card scope.
packages/app-shell/src/views/ObjectView.tsx:44:
importtype{ListViewSchema,ViewNavigationConfig,FeedItem}from'@object-ui/types';FeedItem is never used in the file — git grep -n FeedItem -- packages/app-shell/src/views/ObjectView.tsx returns that line and nothing else. The other two names in the import are live.
Harmless at runtime (a type-only import erases), and lint is green today: @typescript-eslint/no-unused-vars is configured as a warning in this repo and the file already carries other warnings, so it does not stand out.
Why it is worth recording rather than ignoring: a stray FeedItem import is exactly the false positive a producer census has to filter out. The census for #5877 narrows on "files that mention FeedItem" as a necessary condition for constructing one, and this file is one of the 13 hits it has to reject by hand. A type-only import that no longer means anything makes the next census slower and slightly less trustworthy.
Fix is one word deleted. Filed unassigned.
Generated by Claude Code
Found while running the
FeedItemTypeproducer census for #5877. Observation only; not fixed there, and not in that card scope.packages/app-shell/src/views/ObjectView.tsx:44:FeedItemis never used in the file —git grep -n FeedItem -- packages/app-shell/src/views/ObjectView.tsxreturns that line and nothing else. The other two names in the import are live.Harmless at runtime (a type-only import erases), and lint is green today:
@typescript-eslint/no-unused-varsis configured as a warning in this repo and the file already carries other warnings, so it does not stand out.Why it is worth recording rather than ignoring: a stray
FeedItemimport is exactly the false positive a producer census has to filter out. The census for #5877 narrows on "files that mentionFeedItem" as a necessary condition for constructing one, and this file is one of the 13 hits it has to reject by hand. A type-only import that no longer means anything makes the next census slower and slightly less trustworthy.Fix is one word deleted. Filed unassigned.
Generated by Claude Code