Skip to content

Commit

Permalink
Merge branch 'main' into revert-666-ev/iss659
Browse files Browse the repository at this point in the history
  • Loading branch information
efstajas authored Sep 26, 2023
2 parents 0e61141 + 7a45cb1 commit 24f5378
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/e2e-tests/top-up-create-stream.e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,7 @@ describe('app', async () => {

await expect(page.locator('text=This is an EDITED title')).toHaveCount(1);
await expect(page.locator('text=This is an EDITED description.')).toHaveCount(1);
await expect(page.locator('text=drips-test-repo-11')).toHaveCount(1);
await expect(page.locator('text=0x43')).toHaveCount(0);
});

Expand Down
5 changes: 1 addition & 4 deletions src/lib/flows/edit-drip-list/steps/edit-drip-list.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,7 @@
const callerClient = await getCallerClient();
const { receivers, projectsSplitMetadata } =
await dripListService.getProjectsSplitMetadataAndReceivers({
percentages,
items,
});
await dripListService.getProjectsSplitMetadataAndReceivers(dripList);
const setSplitsTx = await nftDriverTxFactory.setSplits(dripListId, receivers);
Expand Down
3 changes: 3 additions & 0 deletions src/lib/utils/fiat-estimates/fiat-estimates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ export async function track(addresses: TokenAddress[]) {
(i): i is [string, number] => i[1] !== undefined,
);

// If knownIds is empty, we're done.
if (knownIds.length === 0) return;

// Build a string of all known IDs
const idString = knownIds.map((i) => i[1]).join(',');

Expand Down

0 comments on commit 24f5378

Please sign in to comment.