core-outline 1.1.5 → 1.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "core-outline",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "A React component for Core&Outline",
5
- "main": "dist/index.js",
6
- "module": "dist/index.es.js",
5
+ "main": "src/index.js",
6
+ "module": "src/index.js",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1",
9
9
  "storybook": "storybook dev -p 6006",
@@ -348,14 +348,6 @@ const CoreOutline = ({ children, data_source_id, data_source_secret }) => {
348
348
 
349
349
  return (
350
350
  <div>
351
- <button
352
- onClick={() => {
353
- saveEventsLocally('formatted');
354
- saveEventsLocally('raw');
355
- }}
356
- >
357
- Save Events Locally
358
- </button>
359
351
  {children}
360
352
  </div>
361
353
  );