feat: adding hydra shop constant

This commit is contained in:
Chubby Granny Chaser 2025-02-16 19:36:02 +00:00
parent f428c522b6
commit 6e35600ffe
No known key found for this signature in database
6 changed files with 15 additions and 9 deletions

View file

@ -89,7 +89,12 @@ const handleDeepLinkPath = (uri?: string) => {
}
if (url.host === "profile") {
WindowManager.redirect(`profile${url.search}`);
const userId = url.searchParams.get("userId");
if (userId) {
WindowManager.redirect(`profile/${userId}`);
}
return;
}