Test /dev/test and change extension text

This commit is contained in:
Cooper Ransom 2024-03-19 22:43:53 -04:00
parent b2bc993082
commit 0a17d7c7cf
2 changed files with 5 additions and 5 deletions

View File

@ -168,10 +168,10 @@ function App() {
{/* other */} {/* other */}
<Route path="/dev" element={<DeveloperPage />} /> <Route path="/dev" element={<DeveloperPage />} />
<Route path="/dev/video" element={<VideoTesterView />} /> <Route path="/dev/video" element={<VideoTesterView />} />
{/* developer routes that can abuse workers are disabled in production */} {/* developer routes that can abuse workers are disabled in production (idgaf) */}
{process.env.NODE_ENV === "development" ? ( {/* {process.env.NODE_ENV === "development" ? ( */}
<Route path="/dev/test" element={<TestView />} /> <Route path="/dev/test" element={<TestView />} />
) : null} {/* ) : null} */}
<Route path="*" element={<NotFoundPage />} /> <Route path="*" element={<NotFoundPage />} />
</Routes> </Routes>
)} )}

View File

@ -95,7 +95,7 @@ export function ExtensionBanner(props: {
bannerText = "The extension does'nt have the necessary permissions."; bannerText = "The extension does'nt have the necessary permissions.";
break; break;
case "outdated": case "outdated":
bannerText = "Your extension is outdated. Please update it here."; bannerText = "Your extension is outdated. Please update it <bold>here</bold>.";
break; break;
case "disallowed": case "disallowed":
bannerText = bannerText =