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 */}
<Route path="/dev" element={<DeveloperPage />} />
<Route path="/dev/video" element={<VideoTesterView />} />
{/* developer routes that can abuse workers are disabled in production */}
{process.env.NODE_ENV === "development" ? (
<Route path="/dev/test" element={<TestView />} />
) : null}
{/* developer routes that can abuse workers are disabled in production (idgaf) */}
{/* {process.env.NODE_ENV === "development" ? ( */}
<Route path="/dev/test" element={<TestView />} />
{/* ) : null} */}
<Route path="*" element={<NotFoundPage />} />
</Routes>
)}

View File

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