Fork of atp.tools as a universal profile for people on the ATmosphere

bug: not updating on page switch

Natalie B 780922da 44a9f49b

Changed files
+2 -12
src
+2 -12
src/components/allBacklinksViewer.tsx
··· 41 41 }; 42 42 43 43 fetchData(); 44 - }, []); 44 + }, [aturi]); 45 45 46 46 if (loading) { 47 47 return ( ··· 90 90 > 91 91 constellation 92 92 </a> 93 - by 94 - <Link 95 - className="text-blue-500 hover:underline" 96 - to="/at:/$handle" 97 - params={{ handle: "bad-example.com" }} 98 - target="_blank" 99 - rel="noopener noreferrer" 100 - > 101 - phil 102 - </Link> 103 93 </div> 104 94 <div className="grid gap-4 md:grid-cols-1 lg:grid-cols-2 leading-snug"> 105 95 {Object.entries(data.links).map(([category, stats]) => ( ··· 190 180 191 181 // Helper function to format stat names 192 182 const formatStatName = (name: string) => { 193 - return name.split(".").filter(Boolean).join(" → "); 183 + return name.split(".").filter(Boolean).join("."); 194 184 }; 195 185 196 186 export default AllBacklinksViewer;