fix: 提交短链服务、sentry监控

This commit is contained in:
2025-09-04 06:18:10 -07:00
parent 3c615237e7
commit 57173a0221
13 changed files with 142 additions and 67 deletions
@@ -5,12 +5,9 @@ import useGlobalStore from '@/config/use-global';
import { Card, CardContent } from '@workspace/airo-ui/components/card';
import { useTranslations } from 'next-intl';
import CopyShortenedLink from '@/components/CopyShortenedLink/CopyShortenedLink';
import Recharge from '@/components/subscribe/recharge';
import SvgIcon from '@/components/SvgIcon';
import { Button } from '@workspace/airo-ui/components/button';
import Link from 'next/link';
import { CopyToClipboard } from 'react-copy-to-clipboard';
import { toast } from 'sonner';
import Table from './components/Table/Table';
import WalletDialog from './components/WalletDialog/WalletDialog';
@@ -67,18 +64,7 @@ export default function Page() {
</p>
<p className='flex justify-between text-base font-medium text-[#225BA9]'>
<span> {user?.refer_code}</span>
<CopyToClipboard
text={`${location?.origin}/?invite=${user?.refer_code}`}
onCopy={(text, result) => {
if (result) {
toast.success(dashboardT('copySuccess'));
}
}}
>
<Button variant='link' size='sm' className='h-auto p-0 px-0 [&_svg]:size-5'>
<SvgIcon name={'copy'}></SvgIcon>
</Button>
</CopyToClipboard>
<CopyShortenedLink className={'sm:block'} />
</p>
</div>
</div>
+1 -10
View File
@@ -1,12 +1,3 @@
import dynamic from 'next/dynamic';
export default async function MainLayout({ children }: { children: React.ReactNode }) {
const CrispWithNoSSR = dynamic(() => import('@/components/Crisp/Crisp'));
return (
<>
<CrispWithNoSSR />
{children}
</>
);
return <>{children}</>;
}