atproto explorer
0
fork

Configure Feed

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

homepage

+3 -2
+2 -2
src/App.tsx
··· 323 323 </span> 324 324 </div> 325 325 <div class="basis-1/3 text-center font-mono text-xl font-bold"> 326 - PDSls 326 + <A href="/">PDSls</A> 327 327 </div> 328 328 <div class="justify-right flex basis-1/3 gap-x-2"> 329 329 <a ··· 371 371 </div> 372 372 </form> 373 373 <div class="mb-3 mt-4 font-mono"> 374 - <Show when={pds()}> 374 + <Show when={pds() && params.pds}> 375 375 <A 376 376 end 377 377 href={pds()!}
+1
src/index.tsx
··· 15 15 render( 16 16 () => ( 17 17 <Router root={Layout}> 18 + <Route path="/" component={() => <></>} /> 18 19 <Route path="/:pds" component={PdsView} /> 19 20 <Route path="/:pds/:repo" component={RepoView} /> 20 21 <Route path="/:pds/:repo/:collection" component={CollectionView} />