We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9e5b6 commit 171ef3aCopy full SHA for 171ef3a
src/components/Expense/ConvertibleBalance.tsx
@@ -219,7 +219,9 @@ export const ConvertibleBalance: React.FC<ConvertibleBalanceProps> = ({
219
className={className}
220
amount={totalConvertedAmount ? totalConvertedAmount : balances[0]!.amount}
221
currency={totalConvertedAmount ? selectedCurrency : balances[0]!.currency}
222
- hasMore={balances.length > 1}
+ hasMore={
223
+ balances.length > 1 && (selectedCurrency === SHOW_ALL_VALUE || !selectedCurrency)
224
+ }
225
/>
226
)}
227
</div>
0 commit comments