Skip to content

Commit

Permalink
Use tripple-equals assertion
Browse files Browse the repository at this point in the history
Co-authored-by: Iveta <[email protected]>
  • Loading branch information
marcelosalloum and quietbits authored Aug 27, 2024
1 parent 6cd831e commit f9232ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DisbursementDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ export const DisbursementDetails: React.FC<DisbursementDetailsProps> = ({
{walletAssets
?.filter((wa: ApiAsset) => {
// Check for the default native asset
if (wa.code == "XLM" && wa.issuer == "") {
if (wa.code === "XLM" && wa.issuer === "") {
return true;
}
// Check that the asset is a non-native asset that has a distribution account balance
Expand Down

0 comments on commit f9232ab

Please sign in to comment.