We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c16fa58 commit bfbb667Copy full SHA for bfbb667
.gitignore
@@ -22,3 +22,4 @@ dist-ssr
22
*.njsproj
23
*.sln
24
*.sw?
25
+.vercel
src/components/GitSequencer.jsx
@@ -476,7 +476,7 @@ const GitSequencer = () => {
476
477
// URL to clipboard
478
const handleShare = () => {
479
- const shareUrl = `${window.location.origin}?user=${encodeURIComponent(username)}`;
+ const shareUrl = `${window.location.origin}/${encodeURIComponent(username)}`;
480
navigator.clipboard.writeText(shareUrl).then(() => {
481
setShowToast(true);
482
}).catch(() => {
vercel.json
@@ -0,0 +1,8 @@
1
+{
2
+ "rewrites": [
3
+ {
4
+ "source": "/:path*",
5
+ "destination": "/index.html"
6
+ }
7
+ ]
8
+}
0 commit comments