From 1b6847f0c7f8ab3a0bcd68bd0a527ca87dcdf392 Mon Sep 17 00:00:00 2001 From: Eric Fennis Date: Mon, 14 Jun 2021 22:54:39 +0200 Subject: [PATCH] Rename zip filename site (#338) * rename zipname * Update Header.tsx --- site/src/components/Header.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/Header.tsx b/site/src/components/Header.tsx index 82611a7..33cee0c 100644 --- a/site/src/components/Header.tsx +++ b/site/src/components/Header.tsx @@ -17,7 +17,7 @@ const Header = ({ data }) => { const downloadAllIcons = async () => { const zip = await generateZip(data); - download(zip, 'feather.zip'); + download(zip, 'lucide.zip'); }; const repositoryUrl = 'https://github.com/lucide-icons/lucide';