fix
This commit is contained in:
parent
887f4e8f1d
commit
283eb85066
2 changed files with 4 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
import { Suspense } from "react";
|
import { Suspense } from "react";
|
||||||
import Annunci from "~/app/ui/annunci";
|
import Annunci from "~/_app/ui/annunci";
|
||||||
import { getDataFromDB } from "~/app/lib/annunci";
|
import { getDataFromDB } from "~/_app/lib/annunci";
|
||||||
import { LoadingPage } from "~/components/loading";
|
import { LoadingPage } from "~/components/loading";
|
||||||
|
|
||||||
export default function TestAppPage() {
|
export default function TestAppPage() {
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ import type { GetStaticPaths, GetStaticPropsContext, NextPage } from "next";
|
||||||
import Head from "next/head";
|
import Head from "next/head";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { IconMatrix, type IconType } from "~/components/IconComponents";
|
import { IconMatrix, type IconType } from "~/components/IconComponents";
|
||||||
import FailedAnnuncioLoading, { LoadingPage } from "~/components/loading";
|
import { LoadingPage } from "~/components/loading";
|
||||||
import { Button, buttonVariants } from "~/components/ui/button";
|
import { Button, buttonVariants } from "~/components/ui/button";
|
||||||
import {
|
import {
|
||||||
type CaratteristicheFiltered,
|
type CaratteristicheFiltered,
|
||||||
|
|
@ -58,6 +58,7 @@ import TipologiaPosizioneEnum from "~/schemas/public/TipologiaPosizioneEnum";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { env } from "~/env.mjs";
|
import { env } from "~/env.mjs";
|
||||||
import type { Annunci } from "~/schemas/public/Annunci";
|
import type { Annunci } from "~/schemas/public/Annunci";
|
||||||
|
import FailedAnnuncioLoading from "~/components/failed-loading";
|
||||||
|
|
||||||
type AnnuncioProps = {
|
type AnnuncioProps = {
|
||||||
cod: string;
|
cod: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue