Skip to content

Commit

Permalink
Fixed wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
atrincas authored and andresgnlez committed Dec 3, 2024
1 parent 2f32478 commit fa018ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/containers/profile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import Link from "next/link";
import { useSetAtom } from "jotai";

import CustomProjects from "@/containers/profile/custom-projects";
import FileUpload, { EXCEL_FILES } from "@/containers/profile/file-upload";
import DeleteAccount from "@/containers/profile/delete-account";
import FileUpload, { TEMPLATE_FILES } from "@/containers/profile/file-upload";
import FileUploadDescription from "@/containers/profile/file-upload/description";
import ProfileSection from "@/containers/profile/profile-section";
import ProfileSidebar from "@/containers/profile/profile-sidebar";
Expand All @@ -16,7 +17,6 @@ import UserDetails from "@/containers/profile/user-details";

import { ScrollArea } from "@/components/ui/scroll-area";
import { SidebarTrigger } from "@/components/ui/sidebar";
import DeleteAccount from "src/containers/profile/delete-account";

const sections = [
{
Expand All @@ -42,7 +42,7 @@ const sections = [
{
id: "share-information",
title: "Share information",
description: <FileUploadDescription files={EXCEL_FILES} />,
description: <FileUploadDescription files={TEMPLATE_FILES} />,
Component: FileUpload,
},
{
Expand Down

0 comments on commit fa018ca

Please sign in to comment.