Commit a47e21ab authored by Enrique Alcantara's avatar Enrique Alcantara

Address code review feedback

parent 69ec8c2f
...@@ -17,8 +17,6 @@ const submitContentChangesResolver = ( ...@@ -17,8 +17,6 @@ const submitContentChangesResolver = (
}, },
}, },
}); });
return null;
}, },
); );
}; };
......
...@@ -137,7 +137,7 @@ describe('static_site_editor/pages/home', () => { ...@@ -137,7 +137,7 @@ describe('static_site_editor/pages/home', () => {
expect(findInvalidContentMessage().exists()).toBe(true); expect(findInvalidContentMessage().exists()).toBe(true);
}); });
it('does not display invalid content message when content is not supported', () => { it('does not display invalid content message when content is supported', () => {
buildWrapper({ appData: { isSupportedContent: true } }); buildWrapper({ appData: { isSupportedContent: true } });
expect(findInvalidContentMessage().exists()).toBe(false); expect(findInvalidContentMessage().exists()).toBe(false);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment