We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7cbd40c + 27d2b9a commit dc6f55dCopy full SHA for dc6f55d
1 file changed
src/routes/dashboard/+page.svelte
@@ -489,7 +489,9 @@
489
}
490
491
function shareConfig(config: Config) {
492
- shareUrl = `https://openboot.dev/${$auth.user?.username}/${config.slug}`;
+ shareUrl = config.alias
493
+ ? `https://openboot.dev/${config.alias}`
494
+ : `https://openboot.dev/${$auth.user?.username}/${config.slug}`;
495
shareConfigName = config.name;
496
shareCopied = false;
497
showShareModal = true;
0 commit comments