Skip to content

Commit

Permalink
Changed folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
atrincas authored and agnlez committed Dec 3, 2024
1 parent cdefea0 commit 2f32478
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/src/containers/profile/file-upload/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ import { Card } from "@/components/ui/card";
import { useToast } from "@/components/ui/toast/use-toast";

// Array should be in this order
export const EXCEL_FILES = [
export const TEMPLATE_FILES = [
{
name: "carbon-input-template.xlsx",
path: "/forms/carbon-input-template.xlsx",
path: "/templates/carbon-input-template.xlsx",
},
{
name: "cost-input-template.xlsx",
path: "/forms/cost-input-template.xlsx",
path: "/templates/cost-input-template.xlsx",
},
];

const REQUIRED_FILE_NAMES = EXCEL_FILES.map((f) => f.name);
const REQUIRED_FILE_NAMES = TEMPLATE_FILES.map((f) => f.name);
const EXCEL_EXTENSIONS = [".xlsx", ".xls"];
const MAX_FILES = 2;

Expand Down

0 comments on commit 2f32478

Please sign in to comment.