* feat(settings): redesign modal with improved layout and Agent tab - Unified desktop/mobile layout using single Dialog component - Desktop: 2-column grid (nav 180px | content) - Mobile: Single column with dropdown navigation - Fixed modal height to prevent content stretching - Removed AI chat panel (commented out for future use) - Renamed 'Slab Memory' to 'Agent' tab - Added mock Agent settings: Signet ID (ETH) input and Configure button - Added useChatStateOptional hook to chat-provider for safe context usage - Fixed provider order in dashboard layout * chore: add auth-bypass.ts to gitignore for local dev --------- Co-authored-by: Avery Felts <averyfelts@Averys-MacBook-Air.local>
43 lines
447 B
Plaintext
Executable File
43 lines
447 B
Plaintext
Executable File
# dependencies
|
|
node_modules/
|
|
|
|
# next.js
|
|
.next/
|
|
out/
|
|
.open-next/
|
|
|
|
# cloudflare
|
|
.wrangler/
|
|
.dev.vars
|
|
|
|
# env
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
credentials/
|
|
|
|
# build
|
|
dist/
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.tsbuildinfo
|
|
|
|
# dev tools
|
|
.playwright-mcp
|
|
mobile-ui-references/
|
|
.fuse_*
|
|
|
|
# directories
|
|
tmp/
|
|
references/
|
|
|
|
# capacitor native builds
|
|
ios/App/Pods/
|
|
ios/App/build/
|
|
android/.gradle/
|
|
android/build/
|
|
android/app/build/
|
|
# Local auth bypass (dev only)
|
|
src/lib/auth-bypass.ts
|