enzostvs HF staff commited on
Commit
f49be2c
1 Parent(s): ab085bc
Files changed (2) hide show
  1. .gitignore +2 -1
  2. 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://huggingface.co/spaces/enzostvs/hugger-roaster/${id}`;
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 = () => {