From 11bcb4257db4211ef7391d20ed8e97465967dc9f Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Tue, 28 Nov 2023 09:49:05 +0300 Subject: [PATCH] apps/web: fix download buttons link --- apps/web/components/Form/Files.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/web/components/Form/Files.tsx b/apps/web/components/Form/Files.tsx index 04bb0c2..85e131f 100644 --- a/apps/web/components/Form/Files.tsx +++ b/apps/web/components/Form/Files.tsx @@ -1,20 +1,17 @@ import { FormContext } from './context/form-context'; import type { Props } from './types'; import type * as IUS from '@/api/ius/types'; -import { getUrls } from '@/config/urls'; import { ArrowDownTrayIcon } from '@heroicons/react/24/solid'; import Link from 'next/link'; import { useContext } from 'react'; import { Heading, InputFile } from 'ui'; -const { URL_IUS } = getUrls(); - type DownloadDocumentProps = Pick; function DownloadDocument({ document }: DownloadDocumentProps) { return document ? (