Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

use `.push` instead of `.concat` (#4624)

authored by

Hailey and committed by
GitHub
bce3338a ffb67397

+2 -2
+2 -2
src/screens/Onboarding/StepFinished.tsx
··· 110 110 111 111 // Any starter pack feeds will be pinned _after_ the defaults 112 112 if (starterPack && starterPack.feeds?.length) { 113 - feedsToSave.concat( 114 - starterPack.feeds.map(f => ({ 113 + feedsToSave.push( 114 + ...starterPack.feeds.map(f => ({ 115 115 type: 'feed', 116 116 value: f.uri, 117 117 pinned: true,