Skip to content

Commit

Permalink
Merge pull request #34 from DevMinds-TIS/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
julio7173 authored Nov 13, 2024
2 parents d4a9147 + 2f3b3a8 commit 511b21d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const nextConfig = {
publicRuntimeConfig: {
LARAVEL_PUBLIC_BACKEND_URL: process.env.LARAVEL_PUBLIC_BACKEND_URL,
},
output: 'export',
// output: 'export',
};

export default nextConfig;
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use client';
import { Card, CardHeader, Avatar, CardBody, CardFooter, Image, Skeleton } from "@nextui-org/react";
import Link from "next/link";
import { useEffect, useState } from "react";
import { FileUpload } from "@/app/_lib/components/FileUpload";
import NewSpace from "./NewSpace";
Expand Down Expand Up @@ -112,7 +111,6 @@ const fetchUser = async (): Promise<User> => {
return data;
};


export default function ProjectPage({ params }: { params: { Código: string } }) {
const [project, setProject] = useState<Project | null>(null);
const [documents, setDocuments] = useState<Document[]>([]);
Expand Down

0 comments on commit 511b21d

Please sign in to comment.