this repo has no description
3
fork

Configure Feed

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

Fix loading of styling

+1 -2
+1 -1
index.html
··· 6 6 <link rel="icon" type="image/svg+xml" href="/vite.svg" /> 7 7 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 8 8 <title>MappedAt</title> 9 - <link href="/src/styles.css" rel="stylesheet"> 9 + <link href="/src/index.css" rel="stylesheet"> 10 10 <link rel="icon" 11 11 href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🏃</text></svg>"> 12 12 <link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
-1
src/main.tsx
··· 1 1 import { createRoot } from "react-dom/client"; 2 2 import { App } from "./components/App.tsx"; 3 3 import { ATProtoContextProvider } from "./context.tsx"; 4 - import './index.css' 5 4 6 5 const root = document.getElementById("root"); 7 6 if (!root) {