This commit is contained in:
Hailey
2024-06-17 08:57:25 -07:00
parent ce5db064b2
commit 06b7559b23
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -102,7 +102,6 @@ export function StepFinished() {
initialFeed: 'following', initialFeed: 'following',
}) })
} }
console.log('ADDING PACK')
addUsedStarterPack(makeStarterPackLink(starterPack)) addUsedStarterPack(makeStarterPackLink(starterPack))
} }
})(), })(),
@@ -14,7 +14,6 @@ export function Provider({children}: {children: React.ReactNode}) {
) )
const setStateWrapped = (v: string) => { const setStateWrapped = (v: string) => {
console.log('ADDING!!!', v)
persisted.write('usedStarterPacks', [...(state ? state : []), v]) persisted.write('usedStarterPacks', [...(state ? state : []), v])
setState(prev => [...(prev ? prev : []), v]) setState(prev => [...(prev ? prev : []), v])
} }