Skip to content

Commit

Permalink
feat: remove async from autocast return (#341)
Browse files Browse the repository at this point in the history
* feat: remove async from autocast return

* Create fast-guests-mix.md

---------

Co-authored-by: Carl Brugger <[email protected]>
  • Loading branch information
bangarang and carlbrugger authored Dec 5, 2023
1 parent 4e872b8 commit 37873a4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/fast-guests-mix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@flatfile/plugin-autocast': patch
---

Bug fix
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugins/autocast/src/autocast.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function autocast(
debug?: boolean
}
) {
return async (listener: FlatfileListener) => {
return (listener: FlatfileListener) => {
listener.on(
'commit:created',
{ sheetSlug },
Expand Down

0 comments on commit 37873a4

Please sign in to comment.