A webapp implementation of thanosSnap
0
fork

Configure Feed

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

Register 'Enter' for login input field

modamo-gh ca445561 44443dcc

+5
+5
components/HomeContent.tsx
··· 127 127 onChange={(e) => 128 128 setAtProtoIdentifier(e.target.value) 129 129 } 130 + onKeyDown={(event) => { 131 + if (event.key === "Enter") { 132 + loginToATProto(); 133 + } 134 + }} 130 135 placeholder="Enter your ATProto handle or DID" 131 136 value={atProtoIdentifier} 132 137 />