fix for deploy
This commit is contained in:
parent
53920d41ef
commit
a1507c4c62
@ -6,9 +6,9 @@ import ListingCard from '../ListingCard'
|
||||
import { Adt } from '@prisma/client'
|
||||
import toast from 'react-hot-toast'
|
||||
|
||||
interface BlockAdtsProps {}
|
||||
// interface BlockAdtsProps {}
|
||||
|
||||
export const BlockAdts: FC<BlockAdtsProps> = () => {
|
||||
export const BlockAdts: FC = () => {
|
||||
|
||||
// Состояния для хранения объявлений и управления их отображением
|
||||
const [adts, setAdts] = useState<Adt[]>([]) // Массив объявлений
|
||||
|
||||
@ -4,10 +4,11 @@ import { Dialog, DialogContent } from "@/components/ui/dialog";
|
||||
import { getUserSession } from "@/lib/get-user-session";
|
||||
import React from "react";
|
||||
import { Phone } from "lucide-react";
|
||||
import { Session } from "next-auth";
|
||||
|
||||
interface Props {
|
||||
phoneNumber: string;
|
||||
session: any;
|
||||
session: Session["user"] | null;
|
||||
}
|
||||
|
||||
export const ShowNumberModal: React.FC<Props> = ({ phoneNumber, session }) => {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user