Fix(code-uri): should use store.remove instead of clear

This commit is contained in:
Berkeley Martinez
2016-08-31 15:16:00 -07:00
parent 8f0ce00dc4
commit be91ce3c42

View File

@ -56,7 +56,7 @@ export function clearCodeSaga(actions, getState) {
::ofType(types.clearSavedCode)
.map(() => {
const { challengesApp: { id = '' } } = getState();
store.clear(id);
store.remove(id);
return null;
});
}