Retro Bulletin Board Systems on atproto. Web app and TUI. lazy mirror of alyraffauf/atbbs atbbs.xyz
forums python tui atproto bbs
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

web: fix handle component

+2 -1
+2 -1
web/src/components/HandleInput.tsx
··· 13 13 14 14 // Props for HandleInput. Extends standard <input> props so callers can 15 15 // pass things like `required`, `disabled`, `id`, etc. 16 - interface HandleInputProps extends InputHTMLAttributes<HTMLInputElement> { 16 + interface HandleInputProps 17 + extends Omit<InputHTMLAttributes<HTMLInputElement>, "onChange" | "value"> { 17 18 value: string; 18 19 onChange: (v: string) => void; 19 20 }