🐛 fix: Update getUserSubscribe function to accept short and token parameters for improved URL generation

This commit is contained in:
web@ppanel
2025-12-30 06:10:44 +00:00
parent 1c93df8172
commit 39ebd09f09
4 changed files with 16 additions and 14 deletions
@@ -251,7 +251,7 @@ function RowMoreActions({
onSelect={async (e) => {
e.preventDefault();
await navigator.clipboard.writeText(
getUserSubscribeUrls(token)[0] || ""
getUserSubscribeUrls(row.short, token)[0] || ""
);
toast.success(t("copySuccess", "Copied successfully"));
}}