Spaces:
Running
Running
test
Browse files- .gitignore +2 -1
- components/copy.tsx +1 -1
.gitignore
CHANGED
@@ -34,4 +34,5 @@ yarn-error.log*
|
|
34 |
# typescript
|
35 |
*.tsbuildinfo
|
36 |
next-env.d.ts
|
37 |
-
.env
|
|
|
|
34 |
# typescript
|
35 |
*.tsbuildinfo
|
36 |
next-env.d.ts
|
37 |
+
.env
|
38 |
+
prisma/dev.db
|
components/copy.tsx
CHANGED
@@ -8,7 +8,7 @@ export const CopyToClipboard = ({ id }: { id: string }) => {
|
|
8 |
const [copied, setCopied] = useState(false);
|
9 |
|
10 |
const url = useMemo(() => {
|
11 |
-
return `https://
|
12 |
}, [id]);
|
13 |
|
14 |
const handleCopy = () => {
|
|
|
8 |
const [copied, setCopied] = useState(false);
|
9 |
|
10 |
const url = useMemo(() => {
|
11 |
+
return `https://enzostvs-hugger-roaster.hf.space/${id}`;
|
12 |
}, [id]);
|
13 |
|
14 |
const handleCopy = () => {
|