mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-21 14:47:41 +01:00
Test /dev/test and change extension text
This commit is contained in:
parent
b2bc993082
commit
0a17d7c7cf
2 changed files with 5 additions and 5 deletions
|
@ -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>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -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 =
|
||||||
|
|
Loading…
Reference in a new issue