ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
16
fork

Configure Feed

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

fix: lil ui things; linting

byarielm.fyi 93c2b5f4 f2718d8f

verified
+8 -6
+3 -3
packages/web/src/components/SetupWizard.tsx
··· 80 80 value: app.id, 81 81 label: app.name, 82 82 icon: app.icon, 83 - }) 83 + }), 84 84 ); 85 85 86 86 return ( ··· 257 257 value={automationFrequency} 258 258 onChange={(e) => 259 259 setAutomationFrequency( 260 - e.target.value as "Weekly" | "Monthly" | "Quarterly" 260 + e.target.value as "Weekly" | "Monthly" | "Quarterly", 261 261 ) 262 262 } 263 263 className="mt-3 ml-auto max-w-xs px-3 py-2 bg-white dark:bg-slate-800 border border-cyan-500/30 dark:border-purple-500/30 rounded-lg text-sm w-full text-purple-950 dark:text-cyan-50 hover:border-cyan-400 dark:hover:border-purple-400 focus:outline-none focus:ring-2 focus:ring-orange-500 dark:focus:ring-amber-400 transition-colors" ··· 290 290 <li className="flex items-center space-x-2"> 291 291 <Check className="w-4 h-4 text-orange-500" /> 292 292 <span> 293 - Data saving: {saveData ? "Enabled" : "Disabled"} 293 + Data Storage: {saveData ? "Enabled" : "Disabled"} 294 294 </span> 295 295 </li> 296 296 <li className="flex items-center space-x-2">
+1 -1
packages/web/src/components/UploadTab.tsx
··· 32 32 return ( 33 33 <Section 34 34 title="Upload Following Data" 35 - description="Find your people on the ATmosphere" 35 + description="Find your people in the ATmosphere" 36 36 action={ 37 37 <SetupPrompt 38 38 variant="button"
+4 -2
packages/web/src/components/common/Badge.tsx
··· 19 19 stat: "bg-purple-100 dark:bg-slate-900 text-purple-950 dark:text-cyan-50", 20 20 match: "bg-purple-100 dark:bg-slate-900 text-purple-950 dark:text-cyan-50", 21 21 info: "bg-purple-100 dark:bg-slate-900 text-purple-950 dark:text-cyan-50", 22 - platform: "bg-purple-100 dark:bg-cyan-900 text-purple-600 dark:text-cyan-400", 23 - status: "bg-orange-650/50 dark:bg-amber-400/50 text-orange-650 dark:text-amber-400", 22 + platform: 23 + "bg-purple-100 dark:bg-cyan-900 text-purple-600 dark:text-cyan-400", 24 + status: 25 + "bg-purple-100 dark:bg-slate-900 text-orange-650 dark:text-amber-400", 24 26 }; 25 27 26 28 return (