use .push instead of .concat
This commit is contained in:
@@ -110,8 +110,8 @@ export function StepFinished() {
|
|||||||
|
|
||||||
// Any starter pack feeds will be pinned _after_ the defaults
|
// Any starter pack feeds will be pinned _after_ the defaults
|
||||||
if (starterPack && starterPack.feeds?.length) {
|
if (starterPack && starterPack.feeds?.length) {
|
||||||
feedsToSave.concat(
|
feedsToSave.push(
|
||||||
starterPack.feeds.map(f => ({
|
...starterPack.feeds.map(f => ({
|
||||||
type: 'feed',
|
type: 'feed',
|
||||||
value: f.uri,
|
value: f.uri,
|
||||||
pinned: true,
|
pinned: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user