use .push instead of .concat

This commit is contained in:
Hailey
2024-06-24 15:36:08 -07:00
parent e0ac7d5bdc
commit 714eded438
+2 -2
View File
@@ -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,