File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/components/common/ColonyActions/helpers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ const useGetRecipientData = (
7979 } = actionData || { } ;
8080 const safeRecipient = safeTransaction ?. transactions ?. items [ 0 ] ?. recipient ;
8181 const stagedPaymentRecipientAddress =
82- expenditure ?. slots [ 0 ] . recipientAddress || '' ;
82+ expenditure ?. slots [ 0 ] ? .recipientAddress || '' ;
8383 const stagedPaymentRecipient = useUserByAddress (
8484 stagedPaymentRecipientAddress ,
8585 ) ;
@@ -421,8 +421,8 @@ export const useMapColonyActionToExpectedFormat = ({
421421 decimals = { getTokenDecimalsWithFallback (
422422 getSelectedToken (
423423 colony ,
424- ! ! expenditureData ?. slots ? .length &&
425- ! ! expenditureData ? .slots [ 0 ] . payouts ?. length
424+ ! ! expenditureData ?. slots . length &&
425+ ! ! expenditureData . slots [ 0 ] . payouts ?. length
426426 ? expenditureData . slots [ 0 ] . payouts [ 0 ] . tokenAddress
427427 : '' ,
428428 ) ?. decimals ,
You can’t perform that action at this time.
0 commit comments