From f9dad1c7e3ea66ad9bd51da8dd123519b3574a49 Mon Sep 17 00:00:00 2001 From: iamenochlee Date: Wed, 5 Nov 2025 15:30:52 +0100 Subject: [PATCH] remove address_id param --- ui/csvExport/CsvExportForm.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/csvExport/CsvExportForm.tsx b/ui/csvExport/CsvExportForm.tsx index 38aa9ae59fd..caa5acd5236 100644 --- a/ui/csvExport/CsvExportForm.tsx +++ b/ui/csvExport/CsvExportForm.tsx @@ -46,7 +46,6 @@ const CsvExportForm = ({ hash, resource, filterType, filterValue, fileNameTempla const apiFetchFactory = React.useCallback((data: FormFields) => { return async(recaptchaToken?: string) => { const url = buildUrl(resource, { hash } as never, { - address_id: hash, from_period: exportType !== 'holders' ? dayjs(data.from).toISOString() : null, to_period: exportType !== 'holders' ? dayjs(data.to).toISOString() : null, filter_type: filterType,