From e0a21f8d39a69a89d8b22e60d0be5c493552db3e Mon Sep 17 00:00:00 2001 From: shrimbly Date: Fri, 9 Jan 2026 21:08:11 +1300 Subject: [PATCH] feat(04-01): add placeholder model search dialog with state management - Dialog opens when provider icon is clicked with provider filter in state - Placeholder UI shows "Coming in 04-02" message - Close button properly resets modelSearchOpen state - Ready for 04-02 to implement full search functionality --- src/components/FloatingActionBar.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/components/FloatingActionBar.tsx b/src/components/FloatingActionBar.tsx index f51d1c34..dcb6be12 100644 --- a/src/components/FloatingActionBar.tsx +++ b/src/components/FloatingActionBar.tsx @@ -394,6 +394,21 @@ export function FloatingActionBar() { )} + + {/* Model search dialog placeholder */} + {modelSearchOpen && ( +
+
+

Model Search Dialog (Coming in 04-02)

+ +
+
+ )} ); }