fix
This commit is contained in:
@@ -1,7 +1,11 @@
|
|||||||
|
"use client"
|
||||||
import { useState, useEffect } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import { useUser } from '@clerk/clerk-react';
|
import { useUser } from '@clerk/nextjs';
|
||||||
import { Button, Input, Label, Card, CardHeader, CardContent, CardFooter } from 'components/ui';
|
import { Button } from '../../../components/ui/button';
|
||||||
|
import { Input } from '../../../components/ui/input';
|
||||||
|
import { Label } from '../../../components/ui/label';
|
||||||
|
import { Card, CardHeader, CardContent, CardFooter } from '../../../components/ui/card';
|
||||||
|
|
||||||
const AccountPage = () => {
|
const AccountPage = () => {
|
||||||
const { user } = useUser();
|
const { user } = useUser();
|
||||||
@@ -157,6 +161,6 @@ const AccountPage = () => {
|
|||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default AccountPage;
|
export default AccountPage;
|
||||||
Reference in New Issue
Block a user