Source: Fix multiple stories overwriting each other

This commit is contained in:
Michael Shilman 2020-06-21 21:20:54 +08:00
parent 1f231fe74f
commit 03b4d142f6

View File

@ -21,7 +21,7 @@ export const SourceContainer: FC<{}> = ({ children }) => {
const sourcesRef = React.useRef<StorySources>();
const handleAddJSX = (id: StoryId, newJsx: SourceItem) => {
if (newJsx !== sources[id]) {
const newSources = { ...sources, [id]: newJsx };
const newSources = { ...sourcesRef.current, [id]: newJsx };
sourcesRef.current = newSources;
}
};