visual improvements in many areas, and unification of links on home page.

This commit is contained in:
2024-12-13 12:10:27 -08:00
parent 02bde16a57
commit 3806e38af4
5 changed files with 51 additions and 20 deletions

View File

@@ -528,7 +528,7 @@ const processLink = async (link) => {
const remainingPath = match[2] || ""; // Rest of the URL
// Perform any asynchronous operation if necessary
await new Promise(resolve => setTimeout(resolve, 10)); // Simulating async operation
return `http://localhost:12391/render/${firstParam}${remainingPath}`;
return `/render/${firstParam}${remainingPath}`;
}
}
return link; // Return unchanged if not a Qortal link