atmosphere explorer pds.ls
tool typescript atproto
434
fork

Configure Feed

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

fix child component mounting

Juliet 15507075 fbae2bcf

+9 -1
+9 -1
src/layout.tsx
··· 178 178 }} 179 179 > 180 180 <Suspense fallback={<Spinner />}> 181 - <Show when={!isRouting() || location.pathname === stablePath} fallback={<Spinner />}> 181 + <Show 182 + when={ 183 + !isRouting() || 184 + location.pathname === stablePath || 185 + stablePath.startsWith(location.pathname) || 186 + location.pathname.startsWith(stablePath) 187 + } 188 + fallback={<Spinner />} 189 + > 182 190 {props.children} 183 191 </Show> 184 192 </Suspense>