Skip to content

Commit 42839e3

Browse files
committed
fix build issue
1 parent 30f921a commit 42839e3

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

website/pages/index.tsx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ import { Seo } from '@/components/seo';
33
import { SectionHeading } from '@/components/shared/SectionHeading';
44
import { SectionSubheading } from '@/components/shared/SectionSubheading';
55
import { CardType, StickyCards } from '@/components/sticky-cards';
6-
import { Button, buttonVariants } from '@/components/ui/button';
6+
import { buttonVariants } from '@/components/ui/button';
77
import { sendGAEvent } from '@next/third-parties/google';
8-
import { useCopyToClipboard } from '@uidotdev/usehooks';
98
import { motion } from 'motion/react';
109
import Image from 'next/image';
1110
import { useEffect, useState } from 'react';
@@ -132,14 +131,13 @@ const CARDS: CardType[] = [
132131
},
133132
];
134133

135-
// const TOKEN = '9UYAYvVS2cZ3BndbsoG1ScJbjfwyEPGxjE79hh5ipump';
136-
const TOKEN = '3uxMtF7dT2VSvRFkrLf9Gqm4nDDy2J5RBEXCQpjubonk';
137-
const truncateToken = (token: string) => {
138-
return `${token.slice(0, 8)}...${token.slice(-8)}`;
139-
};
134+
// // const TOKEN = '9UYAYvVS2cZ3BndbsoG1ScJbjfwyEPGxjE79hh5ipump';
135+
// const TOKEN = '3uxMtF7dT2VSvRFkrLf9Gqm4nDDy2J5RBEXCQpjubonk';
136+
// const truncateToken = (token: string) => {
137+
// return `${token.slice(0, 8)}...${token.slice(-8)}`;
138+
// };
140139

141140
export default function Home() {
142-
const [, copyToClipboard] = useCopyToClipboard();
143141
const [hasCopied, setHasCopied] = useState(false);
144142

145143
useEffect(() => {

0 commit comments

Comments
 (0)