{children} diff --git a/client/src/store/artifacts.ts b/client/src/store/artifacts.ts index f891545277..615baf2064 100644 --- a/client/src/store/artifacts.ts +++ b/client/src/store/artifacts.ts @@ -17,21 +17,6 @@ export const artifactsState = atom>({ ] as const, }); -export const artifactIdsState = atom({ - key: 'artifactIdsState', - default: [], - effects: [ - ({ onSet, node }) => { - onSet(async (newValue) => { - logger.log('artifacts', 'Recoil Effect: Setting artifactIdsState', { - key: node.key, - newValue, - }); - }); - }, - ] as const, -}); - export const currentArtifactId = atom({ key: 'currentArtifactId', default: null,