Highly ambitious ATProtocol AppView service and sdks
0
fork

Configure Feed

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

add type attribute to button

+7 -7
+7 -7
frontend/src/pages/IndexPage.tsx
··· 16 16 <Layout title="Slices" currentUser={currentUser}> 17 17 <div className="max-w-4xl mx-auto"> 18 18 <div className="flex justify-between items-center mb-8"> 19 - <h1 className="text-3xl font-bold text-gray-800"> 20 - Slices 21 - </h1> 22 - <button 19 + <h1 className="text-3xl font-bold text-gray-800">Slices</h1> 20 + <button 21 + type="button" 23 22 className="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded" 24 23 hx-get="/dialogs/create-slice" 25 24 hx-target="body" ··· 93 92 No slices yet 94 93 </h3> 95 94 <p className="text-gray-500 mb-6"> 96 - Create your first slice to get started organizing your AT Protocol data. 95 + Create your first slice to get started organizing your AT Protocol 96 + data. 97 97 </p> 98 - <button 98 + <button 99 99 className="bg-blue-500 hover:bg-blue-600 text-white px-6 py-2 rounded" 100 100 hx-get="/dialogs/create-slice" 101 101 hx-target="body" ··· 108 108 </div> 109 109 </Layout> 110 110 ); 111 - } 111 + }