Skip to content

Commit

Permalink
fix merge export for now
Browse files Browse the repository at this point in the history
  • Loading branch information
FranzPoize committed Feb 10, 2016
1 parent 4f12431 commit 40ac5ab
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/scripts/actions/export.actions.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import {exportStore, fontVariant} from '../stores/creation.stores.jsx';
import {exportStore, fontVariant, fontControls} from '../stores/creation.stores.jsx';
import LocalServer from '../stores/local-server.stores.jsx';
import LocalClient from '../stores/local-client.stores.jsx';
import {FontValues} from '../services/values.services.js';
import HoodieApi from '../services/hoodie.services.js';
import JSZip from 'jszip';

let localServer;
Expand Down Expand Up @@ -38,7 +39,7 @@ export default {
localClient.dispatchAction('/exporting', {exporting: false});
window.Intercom('trackEvent', 'export-otf');
clearTimeout(exportingError);
}, name, merged);
}, name.family, merged, undefined, HoodieApi.instance.email);
},
'/export-family': async ({familyToExport, variants}) => {
const oldVariant = fontVariant.get('variant');
Expand Down Expand Up @@ -85,7 +86,7 @@ export default {
family: familyToExport.name,
style: value.currVariant.name,
},
true,
false,
value.fontValues.values
);

Expand Down

0 comments on commit 40ac5ab

Please sign in to comment.