We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3cf079 commit 15c41d8Copy full SHA for 15c41d8
src/routes/dashboard/+page.svelte
@@ -451,9 +451,7 @@
451
}
452
453
function shareConfig(config: Config) {
454
- const configUrl = config.alias
455
- ? `https://openboot.dev/${config.alias}`
456
- : `https://openboot.dev/${$auth.user?.username}/${config.slug}`;
+ const configUrl = `https://openboot.dev/${$auth.user?.username}/${config.slug}`;
457
const text = `My dev stack: ${config.name} — set up in minutes with @openbootdotdev`;
458
const hashtags = 'OpenBoot,macOS,DevTools';
459
const tweetUrl = `https://twitter.com/intent/tweet?text=${encodeURIComponent(text)}&url=${encodeURIComponent(configUrl)}&hashtags=${encodeURIComponent(hashtags)}`;
0 commit comments