pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

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

pls fix

+3 -3
+3 -3
src/setup/App.tsx
··· 90 90 function App() { 91 91 useHistoryListener(); 92 92 useOnlineListener(); 93 - const maintenance = true; // Shows maintance page 93 + const maintenance = false; // Shows maintance page 94 94 const [showDowntime, setShowDowntime] = useState(maintenance); 95 95 96 96 const handleButtonClick = () => { ··· 175 175 <Route path="*" element={<NotFoundPage />} /> 176 176 </Routes> 177 177 )} 178 - {showDowntime && ( 178 + {/*showDowntime && ( 179 179 <MaintenancePage onHomeButtonClick={handleButtonClick} /> 180 - )} 180 + )*/} 181 181 </Layout> 182 182 ); 183 183 }