-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUG: Error, Expected signal to be an instanceof AbortSignal #386
Comments
@bendaly818 did you have the same issue? |
to address this issue Airtable#386
I have the same issue @bernatfortet |
@bernatfortet - Could you commit your changes to a PR? So we can hopefully expedite this change getting merged and a new Airtable.js release being tagged? |
Done: #388 |
I'm also facing this issue, I hope it's resolved. |
@bernatfortet Do you have any current workaround for it? |
Hey @bernatfortet I've fixed it. It's a workaround for now but here's the code you need to add:
|
I was getting the same error when using next14 during build
|
@bosung90 I assume that by doing |
Hey I got the same issue here, sorry to ask, but hows the progress going? 👀 |
I was able to get it working for Next 14 with the App Router with the following:
Working with App Router, Server Actions and Route Handlers, both locally with next start and on vercel.
Just doing the node-fetch override from above didn't work, I had to add the abortcontroller-polyfill override as well. |
This did not work for me @clawrence121 still getting the same error. It works with this: |
Commenting for exposure, same issue with AbortController
|
I'm getting an error
Expected signal to be an instanceof AbortSignal
when doing any call, e.g.select
I assume, the same issue as #205, #204
I'm using next.js "next": "^13.5.2",
and using Airtable v0.12.2
After digging around I realized it's a node-fetch issues. I ended having to fork the library and edit many parts of it to make it work. Now I"m using my own version. Upgraded node-fetch and it was solved.
I think the issue is here. When doing
next dev
I'm not getting the issue, but when I'm serving or it's pushed to vercel I'm getting the issue. I think it's because it's not reaching the polyfill or something like that.What would be the most helpful way to support the team in fixing this issue?
The text was updated successfully, but these errors were encountered: