Skip to content

Commit

Permalink
fix: merge regression
Browse files Browse the repository at this point in the history
  • Loading branch information
nsarrazin committed Nov 22, 2024
1 parent 5f16d38 commit 09ddf12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/NavMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
hasMore = false;
}
conversations = Promise.resolve([...(await conversations), ...newConvs]);
conversations = [...conversations, ...newConvs];
}
</script>

Expand Down

0 comments on commit 09ddf12

Please sign in to comment.