Skip to content

Commit

Permalink
Forcing the build pipeline to re-run
Browse files Browse the repository at this point in the history
  • Loading branch information
fredjeck committed Mar 13, 2024
1 parent e1bc687 commit 5054658
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1046,15 +1046,13 @@ export const collectionAddEnvFileEvent = (payload) => (dispatch, getState) => {
export const importCollection = (collection, collectionLocation) => (dispatch, getState) => {
return new Promise((resolve, reject) => {
const { ipcRenderer } = window;

ipcRenderer.invoke('renderer:import-collection', collection, collectionLocation).then(resolve).catch(reject);
});
};

export const shellOpenCollectionPath = (itemPath, isCollection, edit) => () => {
return new Promise((resolve, reject) => {
const { ipcRenderer } = window;

ipcRenderer.invoke('renderer:shell-open', itemPath, isCollection, edit).then(resolve).catch(reject);
});
};

0 comments on commit 5054658

Please sign in to comment.