Skip to content

Commit

Permalink
use .push instead of .concat (#4624)
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok committed Jun 24, 2024
1 parent ffb6739 commit bce3338
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/Onboarding/StepFinished.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ export function StepFinished() {

// Any starter pack feeds will be pinned _after_ the defaults
if (starterPack && starterPack.feeds?.length) {
feedsToSave.concat(
starterPack.feeds.map(f => ({
feedsToSave.push(
...starterPack.feeds.map(f => ({
type: 'feed',
value: f.uri,
pinned: true,
Expand Down

0 comments on commit bce3338

Please sign in to comment.