mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
corrected mismatched addtostudio field name in redux/preview.js
This commit is contained in:
parent
f176835df6
commit
52281502b2
1 changed files with 2 additions and 2 deletions
|
@ -174,9 +174,9 @@ module.exports.setCuratedStudios = items => ({
|
||||||
items: items
|
items: items
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports.addToProjectStudios = studioStub => ({
|
module.exports.addToProjectStudios = studioId => ({
|
||||||
type: 'ADD_TO_PROJECT_STUDIOS',
|
type: 'ADD_TO_PROJECT_STUDIOS',
|
||||||
studioStub: studioStub
|
studioId: studioId
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports.removeFromProjectStudios = studioId => ({
|
module.exports.removeFromProjectStudios = studioId => ({
|
||||||
|
|
Loading…
Reference in a new issue