diff --git a/packages/app/src/components/DonateComponent.tsx b/packages/app/src/components/DonateComponent.tsx index 0d9eb6c2..6d17bd2e 100644 --- a/packages/app/src/components/DonateComponent.tsx +++ b/packages/app/src/components/DonateComponent.tsx @@ -66,12 +66,12 @@ function DonateComponent({ collective }: DonateComponentProps) { const GDToken = GDEnvTokens[gdEnvSymbol]; const currencyOptions: { value: string; label: string }[] = useMemo(() => { - let options = Object.keys(tokenList).reduce((acc, key) => { - if (!key.startsWith('G$') || key === gdEnvSymbol) { - acc.push({ value: key, label: key }); - } - return acc; -}, []); + let options = Object.keys(tokenList).reduce>((acc, key) => { + if (!key.startsWith('G$') || key === gdEnvSymbol) { + acc.push({ value: key, label: key }); + } + return acc; + }, []); return options; }, [tokenList, gdEnvSymbol]);