mirror of
https://github.com/hoornet/vega.git
synced 2026-05-10 14:19:12 -07:00
Fix TypeScript errors blocking production build
- ArticleEditor: annotate map callback parameter as string - ui.ts: prefix unused get parameter with _ to silence noUnusedLocals Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -17,7 +17,7 @@ interface UIState {
|
||||
toggleSidebar: () => void;
|
||||
}
|
||||
|
||||
export const useUIStore = create<UIState>((set, get) => ({
|
||||
export const useUIStore = create<UIState>((set, _get) => ({
|
||||
currentView: "feed",
|
||||
sidebarCollapsed: false,
|
||||
selectedPubkey: null,
|
||||
|
||||
Reference in New Issue
Block a user