Skip to content

Commit

Permalink
fix non-default export breaking umd file
Browse files Browse the repository at this point in the history
  • Loading branch information
notsidney committed Apr 12, 2022
1 parent 230a3c3 commit 61aad18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function submit(e: Event) {
return false;
}

export const feedbackfin = { init, open, changeType, close, submit, config };
const feedbackfin = { init, open, changeType, close, submit, config };
(window as any).feedbackfin = feedbackfin;

export default feedbackfin;

0 comments on commit 61aad18

Please # to comment.